27 lines
409 B
Shell
Executable file
27 lines
409 B
Shell
Executable file
#!/system/bin/sh
|
|
|
|
#
|
|
# Copyright 2019-Present A-Team Digital Solutions
|
|
#
|
|
# Moto Rom Post-Boot Script
|
|
|
|
sleep 10
|
|
|
|
# Set SeLinux Permissive
|
|
su -c setenforce 0
|
|
|
|
sleep 10
|
|
|
|
# A-Team Dynamic R/W
|
|
su -c mount --remount / -w
|
|
su -c mount -o remount,rw /product
|
|
su -c mount -o remount,rw /system_ext
|
|
su -c mount -o remount,rw /vendor
|
|
su -c remount
|
|
|
|
sleep 20
|
|
|
|
# A-Team USB MTP Boot Enabler
|
|
#svc usb setFunctions mtp
|
|
|
|
exit
|