SuperSU root替换工程boot自带root权限

测试机型:三星S7 G930P 安卓 7.0

1.首先我们可以新建一个root.bat批处理文件,内容如下:

adb wait-for-device
adb shell mount -o rw,remount /system
adb shell mount -o rw,remount rootfs /
adb push su.img /data/su.img
adb push launch_daemonsu.sh /system/etc/launch_daemonsu.sh
adb install -r SuperSU-v2.82.apk
adb shell < supersu.cmds

2.然后准备一个shell脚本,名字叫supersu.cmds:

touch /system/xbin/su
chmod 0755 /system/xbin/su
chcon u:object_r:system_file:s0 /system/xbin/su

chmod 0700 /system/etc/launch_daemonsu.sh
chcon u:object_r:su_exec:s0 /system/etc/launch_daemonsu.sh
if [ `cat /system/etc/init.sec.boot.sh | grep daemonsu >/dev/null 2>&1; echo $?` -ne 0 ]; then
  echo '/system/etc/launch_daemonsu.sh' >> /system/etc/init.sec.boot.sh
fi

sync
reboot

3.执行root.bat,替换成功!

[wshop_reward]

您可能还喜欢...

发表评论

邮箱地址不会被公开。