Compare commits

..

5 Commits

Author SHA1 Message Date
Ylarod
338d306501 update for version too old issue (#85) 2024-01-06 21:27:39 +08:00
5ec1cff
7979cb4b25 suppress stopping signal properly 2024-01-06 15:54:37 +08:00
5ec1cff
505e5dc4ba fix typo 2024-01-06 10:02:29 +08:00
5ec1cff
420e93f8ed fix install magisk module task 2024-01-06 09:57:34 +08:00
5ec1cff
eee424f11c make ksud more understandable 2024-01-06 09:57:31 +08:00
4 changed files with 19 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ jobs:
autoclose:
runs-on: ubuntu-latest
steps:
- name: Check issue
- name: Check no title issue
uses: tachiyomiorg/issue-moderator-action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -21,3 +21,17 @@ jobs:
}
]
auto-close-ignore-label: do-not-autoclose
- name: Check version issue
uses: tachiyomiorg/issue-moderator-action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
auto-close-rules: |
[
{
"type": "body",
"regex": ".*(version is too old|version too old|太旧|过旧).*",
"message": "Upgrade your KernelSU / 升级 KernelSU"
}
]
auto-close-ignore-label: do-not-autoclose

View File

@@ -11,7 +11,7 @@ Standalone implementation of Zygisk, providing Zygisk API support for KernelSU a
### KernelSU
+ Minimal KernelSU version: 10940
+ Minimal ksud version: 11424
+ Minimal KernelSU Manager (ksud) version: 11424
+ Kernel has full SELinux patch support
### Magisk

View File

@@ -387,11 +387,11 @@ public:
LOGW("inject signal sent to init: %s %d",
sigabbrev_np(WSTOPSIG(status)), WSTOPSIG(status));
ptrace(PTRACE_CONT, pid, 0, WSTOPSIG(status));
continue;
} else {
LOGW("suppress stopping signal sent to init: %s %d",
sigabbrev_np(WSTOPSIG(status)), WSTOPSIG(status));
}
continue;
}
ptrace(PTRACE_CONT, pid, 0, 0);
}

View File

@@ -89,7 +89,7 @@ androidComponents.onVariants { variant ->
doLast {
if (file("private_key").exists()) {
println("=== machikado intergity signing ===")
println("=== Guards the peace of Machikado ===")
val privateKey = file("private_key").readBytes()
val publicKey = file("public_key").readBytes()
val namedSpec = NamedParameterSpec("ed25519")
@@ -223,7 +223,7 @@ androidComponents.onVariants { variant ->
val installMagiskTask = task<Exec>("installMagisk$variantCapped") {
group = "module"
dependsOn(pushTask)
commandLine("adb", "shell", "su", "-c", "magisk --install-module /data/local/tmp/$zipFileName")
commandLine("adb", "shell", "su", "-M", "-c", "magisk --install-module /data/local/tmp/$zipFileName")
}
task<Exec>("installKsuAndReboot$variantCapped") {