-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
更新工作流配置,完善文件删除逻辑,增强脚本稳定性,升级版本号,精炼文档描述。
- Loading branch information
Showing
8 changed files
with
73 additions
and
18 deletions.
There are no files selected for viewing
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 @@ | ||
magisk/hashList.dat |
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
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
Binary file not shown.
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 |
---|---|---|
@@ -1,5 +1,20 @@ | ||
// code by @YumeYuka | ||
|
||
sleep 120 | ||
chmod 777 $MODDIR/Intelligent | ||
nohup $MODDIR/Intelligent > /dev/null 2>&1 & | ||
baseDir="$(dirname "$(readlink -f "$0")")" | ||
[ -f "$baseDir/skt-utils.sh" ] && . "$baseDir/skt-utils.sh" || exit | ||
|
||
# code before boot completed | ||
|
||
until_boot 90 | ||
nohup_bin "$baseDir/Intelligent" | ||
|
||
# code after boot completed and before unlocked | ||
|
||
# run boot-completed.sh if it exists and root is not supported by KernelSU or APatch, then other code in this script will not run | ||
run_boot_completed_if_magisk "$baseDir" | ||
|
||
until_unlock | ||
|
||
# code after unlocked | ||
|
||
|
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