Please remember to add a category to the bottom of each page that you create.
See categories help for further details, but most will probably be [[Category:HTC ModelName]].
ASUS Padfone
| ASUS Padfone | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Specification | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Contents |
Intro
Specifications
Operating System: Google Android 4.0.3 Processor: Qualcomm Snapdragon S4 8260A Dual-Core 1.5 GHz Display:
- Padfone:4.3inches, qHD 960x540, Super AMOLED with Capacitive Multi touch panel, Scratch Resistant Corning® Gorilla® Glass with HCLR Film
- Padfone Station:10.1inches, WXGA 1280x800, TFT with Capacitive Multi touch panel, Scratch Resistant Corning® Gorilla® Glass with HCLR Film
Memory: 1 GB LPDDR2 RAM, 32/64GB Internal Storage, Expandable to 64/96GB (with microSD Cards) Connectivity: WLAN 802.11b/g/n (2.4Ghz) , Bluetooth v2.1 + EDR
General Info
Development
Getting root access
For android ics 4.0.3 use this method :
@echo This is an adapted idea from the methods of
@echo Dan Rosenberg (vulnfactory.org)
@echo -Script by Bin4ry-
echo off
cd data
echo Please plug the device in ADB-Mode
adb wait-for-device
echo Rename /data/local/tmp to be able to create symlink
adb shell mv /data/local/tmp /data/local/tmp.old
echo Trying to create /data symlink
adb shell ln -s /data /data/local/tmp
adb reboot
echo Waiting for device to reboot
adb wait-for-device
adb shell rm /data/local.prop > nul
echo Trying to write qemu value to prop-file
adb shell "echo \"ro.kernel.qemu=1\" > /data/local.prop"
echo Rebooting
adb reboot
echo Waiting for device to reboot again
adb wait-for-device
echo Try to remount /system
adb remount
echo Pushing su and Superuser.apk
adb push su /system/bin/su
adb shell chmod 06755 /system/bin/su
adb push Superuser.apk /system/app/Superuser.apk
adb shell chmod 644 /system/app/Superuser.apk
echo Cleanup of the Stuff created while running
adb shell rm /data/local.prop
adb shell rm /data/local/tmp
adb shell mv /data/local/tmp.old /data/local/tmp
adb reboot cd .. pause echo Reboot and done ;) Have fun!