
02/12/12, 02:33:39
|
|
Miembro del foro
|
|
Fecha de registro: ago 2012
Localización: lisbon
Mensajes: 151
Modelo de smartphone: THL W100
Tu operador: Orange
|
|
 Cita: Originalmente Escrito por herokickxx
Como se flashea el boot animation? 
from windows, no linux since linux sucks
must have superuser installed and rooted
mount
adb shell "su -c 'busybox mount -o remount,rw /custpack'"
delete
adb shell "su -c 'rm /custpack/JRD_custres/media/bootanimation.zip'"
copy
adb push bootanimation.zip /data/local/tmp/.
adb shell "su -c 'cp /data/local/tmp/bootanimation.zip /custpack/JRD_custres/media/bootanimation.zip'"
delete tmp
adb shell rm /data/local/tmp/*.*
from *.zip file, recovery or install zip
mount
mount("yaffs2", "MTD", "custpack", "/custpack");
delete
delete("/custpack/JRD_custres/media/bootanimation.zip");
copy
package_extract_dir("the dir where you have the bootanimation.zip", "/custpack/JRD_custres/media");
unmount
unmount("/custpack");
cheers
Última edición por roeddie Día 02/12/12 a las 02:47:46.
|