-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into multi-module-impl
- Loading branch information
Showing
39 changed files
with
493 additions
and
198 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: Bug report | ||
description: Create a report to help us improve KernelSU | ||
labels: [Bug] | ||
|
||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Please check before submitting an issue | ||
options: | ||
- label: I have searched the issues and haven't found anything relevant | ||
required: true | ||
|
||
- label: I will upload bugreport file in KernelSU Manager - Settings - Report log | ||
required: true | ||
|
||
- label: I know how to reproduce the issue which may not be specific to my device | ||
required: false | ||
|
||
|
||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is | ||
validations: | ||
required: true | ||
|
||
|
||
- type: textarea | ||
attributes: | ||
label: To Reproduce | ||
description: Steps to reproduce the behaviour | ||
placeholder: | | ||
- 1. Go to '...' | ||
- 2. Click on '....' | ||
- 3. Scroll down to '....' | ||
- 4. See error | ||
- type: textarea | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
|
||
|
||
- type: textarea | ||
attributes: | ||
label: Screenshots | ||
description: If applicable, add screenshots to help explain your problem. | ||
|
||
|
||
- type: textarea | ||
attributes: | ||
label: Logs | ||
description: If applicable, add crash or any other logs to help us figure out the problem. | ||
|
||
|
||
- type: textarea | ||
attributes: | ||
label: Device info | ||
value: | | ||
- Device: | ||
- OS Version: | ||
- KernelSU Version: | ||
- Kernel Version: | ||
validations: | ||
required: true | ||
|
||
|
||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -157,7 +157,7 @@ jobs: | |
- name: Make working directory clean to avoid dirty | ||
working-directory: android-kernel | ||
run: | | ||
sed -i '/^rfkill_/d' common/android/abi_gki_protected_exports_* || echo "No protected exports!" | ||
rm common/android/abi_gki_protected_exports_* || echo "No protected exports!" | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "KernelSUBot" | ||
cd common/ && git add -A && git commit -a -m "Add KernelSU" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<string name="selinux_status_unknown">Tidak Diketahui</string> | ||
<string name="selinux_status_disabled">Lumpuhkan</string> | ||
<string name="selinux_status_permissive">Permisif</string> | ||
<string name="reboot_download">Mulakan semula ke Download</string> | ||
<string name="module_failed_to_enable">Modul tidak berjaya Diaktifkan:%s</string> | ||
<string name="reboot_edl">Mulakan semula ke EDL</string> | ||
<string name="home_superuser_count">Superusers%d</string> | ||
<string name="home_module_count">Modul%d</string> | ||
<string name="selinux_status_enforcing">Enforcing</string> | ||
<string name="home_fingerprint">Cap Jari</string> | ||
<string name="reboot_recovery">Mulakan semula ke Recovery</string> | ||
<string name="reboot_userspace">Soft reboot</string> | ||
<string name="uninstall">Padam</string> | ||
<string name="module_install">Pasang</string> | ||
<string name="home_click_to_install">Tekan untuk memasang</string> | ||
<string name="module">Modul</string> | ||
<string name="about">Tentang</string> | ||
<string name="home_working_version">Versi%d</string> | ||
<string name="reboot">Mulakan semula</string> | ||
<string name="home_unsupported_reason">KernelSU ketika ini hanya menyokong kernel GKI</string> | ||
<string name="home_selinux_status">Status SELinux</string> | ||
<string name="home_unsupported">Tidak Disokong</string> | ||
<string name="home">Layar Utama</string> | ||
<string name="module_uninstall_confirm">Apakah anda pasti ingin membuang modul %s\?</string> | ||
<string name="superuser">SuperUser</string> | ||
<string name="settings">Tetapan</string> | ||
<string name="home_working">Berjalan</string> | ||
<string name="module_failed_to_disable">Gagal mematikan modul:%s</string> | ||
<string name="module_empty">Tiada modul dipasang</string> | ||
<string name="install">Pasang</string> | ||
<string name="home_kernel">Kernel</string> | ||
<string name="home_not_installed">Tidak terpasang</string> | ||
<string name="reboot_bootloader">Mulakan semula ke bootloader</string> | ||
<string name="home_manager_version">Versi Manager</string> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.