Posted 10 September 2011 - 02:58 AM
This is the change history:
V1.0
system writeable , but not rooted system -- a bat file ,adb , modified boot.img ,and upgrade tool
V2.0
just some words change
V3.0
system writeable , rooted system -- a bat file ,adb , modified boot.img , and upgrade tool
V4
system writeable , rooted system -- modified boot.img , and upgrade tool
Diff V4 to V3
1. Just flash a modified boot.img into you T760 , it will work . without any bat file , adb push , etc..
2. If you clean all data (use fatory reset), V4 can work , But V3 will fail to power on .
Why V4 can do this?
Because I found a smart way to do :
1. mount system partition to /sysro
2. add a new service to call /init.sh
3. In init.sh
#!/busybox sh
if [ ! -e /data/sysrw/TAG ]; then
/busybox mkdir /data/sysrw
/busybox cp -r /sysro/* /data/sysrw/
/busybox touch /data/sysrw/TAG
/busybox cp /su /data/sysrw/bin/
reboot
fi
############################
As you see , I will check file /data/sysrw/TAG , if it is exist, It means isn't first boot
then , if it is first-boot, cp all files in /sysro/ to /data/sysrw/ ,and then root -- this setp will take 5 min !!
So , After you flash V4 boot.img , and power on the T760 , it will check and cp the files
in init.rc , I change the mount cmdline of data partition , so the system is FULL rooted.
BTW, have no more need of Superuser.apk
So, V4 is best version for you , by now.
about compatibility
2.0.8 and 2.0.7 is test by me , and some user report that 2.0.3 work perfect