Hai gusarambula,
by following below stpes it worked. but now i am facing what problem means i have created bootanimation.zip folder is not working i downloaded boot animation.zip folder is owrking . I dont't no what misatake i did while creating the bootanimation.zip folder ? i here by attach the procedure which i used to create bootanimation zip file could you please look at that one and let me know if any speciality is required for the image
please help me to solve this issue.
• On the host, use ADB to download the bootanimation.zip file into the device, for example:
$ adb push ~/Downloads/bootanimation.zip /mnt/sdcard
• On the device, I login as root by editing the bootparams
With above settings, the Android platform does not start the shell console. It enables the default Android selinux and
dm_verity security features, which restrict users to change the system and detect the system's information. To avoid this,
"androidboot.selinux=disabled" and "androidboot.dm_verity=disabled" need to be appended to the U-Boot's bootargs. Boot
environment variables are as follows:
U-Boot > setenv bootcmd booti mmc2
U-Boot > setenv bootargs console=ttymxc0,115200 init=/init video=mxcfb0:dev=ldb,bpp=32
video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off vmalloc=400M androidboot.console=ttymxc0
consoleblank=0 androidboot.hardware=freescale cma=384M androidboot.selinux=disabled
- androidboot.dm_verity=disabled
U-Boot > saveenv
Then do the following stpes
remount the /system to writable, and copy the file:
$ mount -o remount -w /system
$ busybox cp /mnt/sdcard/bootanimation.zip /system/media/
$chmod 777 /system/media/ bootanimation.zip
$ busybox cp /mnt/sdcard/bootanimation.zip /data/local
$chmod 777 /system/media/ bootanimation.zip
$ mount -o remount -r /system