38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
#!/system/bin/sh
|
|
|
|
[ "$(getprop vold.decrypt)" = "trigger_restart_min_framework" ] && exit 0
|
|
|
|
for i in wpa p2p;do
|
|
if [ ! -f /data/misc/wifi/${i}_supplicant.conf ];then
|
|
cp /vendor/etc/wifi/wpa_supplicant.conf /data/misc/wifi/${i}_supplicant.conf
|
|
fi
|
|
chmod 0660 /data/misc/wifi/${i}_supplicant.conf
|
|
chown wifi:system /data/misc/wifi/${i}_supplicant.conf
|
|
done
|
|
|
|
if [ -f /vendor/bin/mtkmal ];then
|
|
if [ "$(getprop persist.mtk_ims_support)" = 1 ] || [ "$(getprop persist.mtk_epdg_support)" = 1 ];then
|
|
setprop persist.mtk_ims_support 0
|
|
setprop persist.mtk_epdg_support 0
|
|
reboot
|
|
fi
|
|
fi
|
|
|
|
if grep -qF android.hardware.boot /vendor/manifest.xml || grep -qF android.hardware.boot /vendor/etc/vintf/manifest.xml ;then
|
|
bootctl mark-boot-successful
|
|
fi
|
|
|
|
setprop ctl.restart sec-light-hal-2-0
|
|
if find /sys/firmware -name support_fod |grep -qE .;then
|
|
setprop ctl.restart vendor.fps_hal
|
|
fi
|
|
|
|
#Clear looping services
|
|
sleep 30
|
|
getprop | \
|
|
grep restarting | \
|
|
sed -nE -e 's/\[([^]]*).*/\1/g' -e 's/init.svc.(.*)/\1/p' |
|
|
while read -r svc ;do
|
|
setprop ctl.stop "$svc"
|
|
done
|