Option 2
with terminal from phone:
Extract the files to the root of sdcard, then typ in this code
Code:
su mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system dd if=/sdcard/SystemUI.apk of=/system/app/SystemUI.apk dd if=/sdcard/SemcGenericUxpRes.apk of=/system/framework/SemcGenericUxpRes.apk dd if=/sdcard/framework-res.apk of=/system/framework/framework-res.apk reboot
Option 3
with adb from pc:
Code:
adb push SystemUI.apk /sdcard/tmp/SystemUI.apk adb push SemcGenericUxpRes.apk /sdcard/tmp/SemcGenericUxpRes.apk adb push framework-res.apk /sdcard/tmp/framework-res.apk adb shell su mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system dd if=/sdcard/tmp/SystemUI.apk of=/system/app/SystemUI.apk dd if=/sdcard/tmp/SemcGenericUxpRes.apk of=/system/framework/SemcGenericUxpRes.apk dd if=/sdcard/tmp/framework-res.apk of=/system/framework/framework-res.apk reboot
