Hi,
the ICS clean ROM is rootable! :-)
sorry for my first statement ﴾͡๏̯͡๏﴿ (i bought this tablet to learn Android prog…)
actually adb is activated on ICS clean version;
as usual the problem was the rockchip usb driver not recognized by Win7.
so i tried on a osx and on a linux… Bingo! Root bloody root!
the only trick is to add this id 0x2207 in ~/.android/adb_usb.ini and reboot.
After that adb recognized the device and it 's then possible to send the usual script by terminal:
./adb shell "chmod 06755 /system/bin/su"
./adb shell "rm /system/xbin/su"
./adb shell "ln -s /system/bin/su /system/xbin/su"
./adb push Superuser.apk /system/app/.
./adb shell rm /data/local.prop
./adb shell rm /data/local/tmp
./adb shell mv /data/local/tmp.bak /data/local/tmp
./adb push busybox /data/local/tmp/.
./adb shell "chmod 755 /data/local/tmp/busybox"
./adb shell "/data/local/tmp/busybox mount -o remount,rw /system"
./adb shell "dd if=/data/local/tmp/busybox of=/system/xbin/busybox"
./adb shell "chown root.shell /system/xbin/busybox"
./adb shell "chmod 04755 /system/xbin/busybox"
./adb shell "/system/xbin/busybox --install -s /system/xbin"
./adb shell "rm -r /data/local/tmp/busybox"
./adb reboot
This post has been edited by ratto: 11 July 2012 - 02:14 PM