Lenovo doesn't provide updates for the Thinkpad Tablet any more. I'd like to install a custom ROM and therefore need root.
How can I root my Lenovo Thinkpad Tablet?
Lenovo doesn't provide updates for the Thinkpad Tablet any more. I'd like to install a custom ROM and therefore need root.
How can I root my Lenovo Thinkpad Tablet?
The method "debugfs automated root" works for the latest official ROM of the Thinkpad Tablet. Like most other root methods, you need to have the Android SDK (or at least adb
) installed and must be able to connect adb
to your Lenovo Thinkpad (Enable debug mode).
unzip DebugfsRoot_Generic_v2.3.zip
adb push debugfs /data/local/
adb push su /data/local/
adb push debugfsinput /data/local/
adb shell mv /data/local/tmp /data/local/tmp.bak
adb shell ln -s /dev/block/mmcblk0p3 /data/local/tmp
adb reboot
adb shell chmod 777 /data/local/debugfs
adb shell "/data/local/debugfs -w /dev/block/mmcblk0p3 < /data/local/debugfsinput"
adb shell rm /data/local/tmp && adb shell mv /data/local/tmp.bak /data/local/tmp
adb install Superuser.apk
Just run the provided RootDebugfs.bat
/dev/block/mmcblk0p3
with the correct device node. – Flow Jan 10 '13 at 16:13/system
(or just follow the stepsRootDebugfs.bat
does). – Flow Jan 10 '13 at 16:21/system
here is not/dev/...
but simplyubi0_0
(UBIFS), so I better don't play with it I guess... – Izzy Jan 10 '13 at 21:12