加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
service.sh 698 Bytes
一键复制 编辑 原始数据 按行查看 历史
E7KMbb 提交于 2021-06-20 14:48 . 修复一些问题
#!/system/bin/sh
# 不要假设您的模块将位于何处。
# 如果您需要知道此脚本和模块的放置位置,请使用$MODDIR
# 这将确保您的模块仍能正常工作
# 即使Magisk将来更改其挂载点
MODDIR=${0%/*}
# 此脚本将在late_start service 模式执行
work_dir=/sdcard/Android/ADhosts
wait_count=0
until [ $(getprop sys.boot_completed) -eq 1 ] && [ -d "$work_dir" ]; do
sleep 2
wait_count=$((${wait_count} + 1))
if [ ${wait_count} -ge 100 ] ; then
exit 0
fi
done
. $MODDIR/script/select.ini
if [ $update_boot_start = "true" ]; then
sh $MODDIR/script/functions.sh
fi
if [ $regular_update_boot_start = "true" ]; then
sh $MODDIR/script/cron.sh
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化