Skip to content

Instantly share code, notes, and snippets.

@BaReinhard
Last active November 18, 2017 05:38
Show Gist options
  • Save BaReinhard/eed82535ff0f83122c0bccc8eb44a25c to your computer and use it in GitHub Desktop.
Save BaReinhard/eed82535ff0f83122c0bccc8eb44a25c to your computer and use it in GitHub Desktop.
Changing Bootanimation Blu R1 HD

Changing Boot Animation on Blu R1 HD

  1. Have root
  2. Install Android SDK here
  3. Connect Phone to Computer and have it trust your computer. You will need developer options of USB Debugging on
  4. Open Terminal
  5. Use the command adb shell
  6. In the new shell opened gain root by typing su you will need to grant permission via the phone screen
  • mount system as read-write permissions mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
  1. In a seperate command prompt on your computer push the bootanimation.zip to a writable location i.e. /storage/sdcard0/Download
  2. Command would be: adb push bootanimation_path_on_computer /storage/sdcard0/Download
  3. Now in your adb shell move the bootanimation file to system/media: cp /storage/sdcard0/Download/bootanimation.zip /system/media/bootanimation.zip
  4. Now remount your system as read-only: mount -o ro,remount -t yaffs2 /dev/block/mtdblock3 /system
  5. Reboot and enjoy your new bootanimation.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment