Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I know dumb? But can't find a real answer. How do I go from root back to 2.1ota?
Why would u ever want to do that!?, it should be the same as the instructions to go back to 1.5.. or maybe u can only go back to 1.5 idk..
I have read the sticky. So I know you can go back to 1.5. Just wasn't sure about going from 2.1ota, to root, back to 2.1ota. And FYI, never said I wanted to, just nice to know I can.
I have read the sticky. So I know you can go back to 1.5. Just wasn't sure about going from 2.1ota, to root, back to 2.1ota. And FYI, never said I wanted to, just nice to know I can.
Yes one that understands!It'll probably come in real handy if you ever want to return the phone... It's good to know for future reference for sure. This has been one of my biggest concerns.
Yea in order to go back to 2.1 OTA you need to have stock recovery so it would be easier to just go to stock 1.5 besides the Hboot and then have the OTA update it for you.
prompt-whatever> adb shell
/ # mount /sdcard
/ # for FIL in boot.img recovery.img system.img userdata.img ; do md5sum /sdcard/$FIL ; done
/ # echo I have checked the MD5 signatures and I know what I am doing
I have checked the MD5 signatures and I know what I am doing
/ # mount /system
/ # cd /system
/system # rm -rf * >> /dev/null 2>&1
/system # unyaffs /scard/system.img
end of image
/system # cd /
/ # umount /system
/ # mount /data
/ # cd /data
/data # rm -rf * >> /dev/null 2>&1
/data # unyaffs /sdcard/userdata.img
end of image
/data # cd /
/ # umount /data
/ # flash_image boot /sdcard/boot.img
/ # flash_image recovery /sdcard/recovery.img
/ # exit