Las
instrucciones de instalación las muestra aquí. El enlace directo a dichas instrucciones
es éste. Lo tenéis en el segundo post, pero os lo dejo indicado por si no lo veis.
OJO, cuidado, NO vayais a copiar el texto traducido porque os dará error en las opciones 2 y 3,
tenéis que usar el texto original. El problema es que al traducir cambia comandos como "system" por su traducción "sistema" con lo que no os funcionará. Las opciones
son alternativas, deberíais poder usar la que os resulte más cómoda.
Cita:
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
|
Un saludo.