gmorgan056
Member
This is strictly from P3Droid, i'm just passing on the information:
How to maintain root through any upgrade (Motorola Devices Only)
How to maintain root through any upgrade (Motorola Devices Only)
Doing the following will allow your device to maintain root through any upgrade (unless motorola changes things)
I use root explorer, but you can also use adb pull and push.
RootExplorer Method
go to /system/bin/
open in text editor - mount_ext3.sh
add the following lines to the very bottom
chmod 4755 /system/bin/su
chmod 4755 /system/xbin/su
chmod 4755 /system/app/Superuser.apk
ADB method
adb pull /system/bin/mount_ext3.sh
open the file in your favorite text editor
add the following lines to the very bottom
chmod 4755 /system/bin/su
chmod 4755 /system/xbin/su
chmod 4755 /system/app/Superuser.apkSave file
adb push mount_ext3.sh /data/local
adb shell
mount -o rw,remount /dev/null /system
cat /data/local/mount_ext3.sh > /system/bin/mount_ext3.sh
chmod 777 /system/bin/mount_ext3.sh
Done!!!
This method was proposed by Djrbliss, and only slightly altered by me...please thank @DjrBliss on Twitter.
Here's the source link:
How to maintain root through any upgrade (Motorola Devices Only)
Thanks P3Droid!
I use root explorer, but you can also use adb pull and push.
RootExplorer Method
go to /system/bin/
open in text editor - mount_ext3.sh
add the following lines to the very bottom
chmod 4755 /system/bin/su
chmod 4755 /system/xbin/su
chmod 4755 /system/app/Superuser.apk
ADB method
adb pull /system/bin/mount_ext3.sh
open the file in your favorite text editor
add the following lines to the very bottom
chmod 4755 /system/bin/su
chmod 4755 /system/xbin/su
chmod 4755 /system/app/Superuser.apk
adb push mount_ext3.sh /data/local
adb shell
mount -o rw,remount /dev/null /system
cat /data/local/mount_ext3.sh > /system/bin/mount_ext3.sh
chmod 777 /system/bin/mount_ext3.sh
Done!!!
This method was proposed by Djrbliss, and only slightly altered by me...please thank @DjrBliss on Twitter.
Here's the source link:
How to maintain root through any upgrade (Motorola Devices Only)
Thanks P3Droid!