PDA

Ver la Versión Completa : [ CONSULTA ] Bootanimation


herokickxx
02/12/12, 01:33:49
Como se flashea el boot animation?

laid32
02/12/12, 01:44:36
La verdad no se como hacerlo... y Arnau me imagino que tampoco porque en sus Roms siempre pone el mismo y el feo de las letras plateadas, que es el que genera el Uotkitchen cuando no seleccionos la pestana de Use this mod.
En unas horas te lo miro haber

Enviado desde mi Vodafone Smart II usando Tapatalk 2

roeddie
02/12/12, 02:33:39
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

herokickxx
02/12/12, 03:04:15
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

Personally prefer linux but big thanks:D