The u20GT is already rooted, it only needs the tools that handle su requests.
To complete this you need to have ADB drivers and tools installed. [link]
1) Get latest Superuser-x.x.x-arm-signed.zip from http://androidsu.com/superuser/
2) Create a temp folder c:\temp_su
3) Copy "/system/app/Superuser.apk" and "/system/bin/su" from the zip into
the previously created folder.
4) Open a command prompt.
5) PUT adb in your path, if adb is located in your system PATH then skip this step.
- I assume adb tools are installed in this folder: c:\adb_files\apps
6)
7) Remove the temporary folder c:\temp_su
Done.
To complete this you need to have ADB drivers and tools installed. [link]
1) Get latest Superuser-x.x.x-arm-signed.zip from http://androidsu.com/superuser/
2) Create a temp folder c:\temp_su
3) Copy "/system/app/Superuser.apk" and "/system/bin/su" from the zip into
the previously created folder.
4) Open a command prompt.
5) PUT adb in your path, if adb is located in your system PATH then skip this step.
- I assume adb tools are installed in this folder: c:\adb_files\apps
Code:
PATH=%PATH%;c:\adb_files\apps
Code:
adb kill-server<br />
cd c:\temp_su<br />
adb devices<br />
adb remount<br />
adb push Superuser.apk /system/app/<br />
adb push su /system/bin/<br />
adb shell "chmod 644 /system/app/Superuser.apk"<br />
adb shell "chmod 6755 /system/bin/su"
Done.