• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root "Red Rage" Boot Animation

Awesome boot animation!

I'm looking into changing it to blue to match my theme:).. however out of fairness to all the work hammo has put into it, I doubt I will share the blue version..
 
So that is AWESOME! So do we save it as update.zip, then put in the root of the SD card. Boot into recovery and then click install.. allow update.zip installation and then Choose Install /sdcard/update.zip (deprecated)? Is that right? Sorry, I've never changed my boot image before! I'd like to see it..
 
Yeah, it's pretty nice.

Just a warning, it'll eat up about 15MB of your phone internal memory :D

Wow, I never noticed that. Damn, why does it use so much internal memory?

As cool and fun as it is, I also dumped Google Earth last night. I have it on my computer and never use it. I just use maps for everything. I would leave it on there, but it's not worth 25 megs of card space!
 
So that is AWESOME! So do we save it as update.zip, then put in the root of the SD card. Boot into recovery and then click install.. allow update.zip installation and then Choose Install /sdcard/update.zip (deprecated)? Is that right? Sorry, I've never changed my boot image before! I'd like to see it..

itll be called bootanimation.zip and you can adb push it to the phone, theres a thread somewhere on here about changing the boot animation. i dont remember the exact location it goes to. (data/local if i remember correctly. . .) update.zip would be for a new ROM if im not mistaken.

does anyone have the verzion 0.4 or 0.5 .zip they can send me? i've been trying for a couple weeks to DL it from alldroid but I havent had any luck getting large files from that site. . .

BTW - this does not require root to do
 
You know, its pretty funny. On my Windows phone, I would have been all over this since I had to reboot it at least every other day. With my droid, I never reboot it,(except for a new rom) so it really does not add a lot for me. It is nice looking however.
 
i have terminal emulator on my droid. can i use that to install bootanimation.zip?

You can do it using root explorer.

I don't remember off the top of my head, but if you look in the thread where you find the boot ani. there should be instructions of where to put the file. Root explorer is much easier. Just read the adb commands and look what it's doing, then do the same thing using root explorer.

BTW, I just re-flashed the DroidMod 1.0 but this time I deleted /data (but left apps) and re-installed and re-metamorphed everything. My internal memory went from the mid 90's to 175. Whaaaat?!?!?!
 
I think you can use root explorer to copy the bootanimation.zip file to /system/media (mount r/w first) and you should be good to go.
 
Wow, I never noticed that. Damn, why does it use so much internal memory?

It contains ~400 images:p, which makes it huge..

I ran a batch script last night and turned them all to blue, but it failed-blank screen on the Droid:confused:. I am going to try some different encoding/interlacing combinations to see if I can get it to work..
 
Rename to bootanimation.zip
Put on SD Root
Terminal Emulator, enter:

su

mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system

dd if=/sdcard/bootanimation.zip of=/system/media/bootanimation.zip

Reboot


This worked like a dream for me.
 
Rename to bootanimation.zip
Put on SD Root
Terminal Emulator, enter:

su

mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system

dd if=/sdcard/bootanimation.zip of=/system/media/bootanimation.zip

Reboot


This worked like a dream for me.


Whoa whoa whoa whoa... whoa, whoa whoa whoa whoa...

Slow down there, cowboy. Boot animations don't even require root.


Code:
adb push bootanimation.zip /data/local
Or from the phone (assuming bootanimation.zip is in the root folder)
Code:
busybox cp -R /sdcard/bootanimation.zip /data/local
Done.

Your way is just WAY too involved.
 
Does it make a difference so long as it works?
It's two lines and a reboot in terminal emulator - yours is one line shorter.
 
I def love this animation. As I'm on CM (for now), I'm using the CM boot. Before that I was using the Droid Does one (another awesome ani).
 
Does it make a difference so long as it works?
It's two lines and a reboot in terminal emulator - yours is one line shorter.


Well, then there is the problem of mounting mtdblock3 instead of mtdblock4 which is technically wrong. Not to mention the obvious part where moving it to /data/local bypasses any risk of screwing things up for people who don't know what they are doing. So yeah, it does matter. If it works for you, that's cool... but I like to try giving advice based on ways that don't risk screwing up phones rather than ways that do. But I guess that's just me. I've posted things in the past that were quite straight forward only to be bombarded with PMs like "I followed your directions and now I am stuck in boot loop!" because they missed a command line.
 
Back
Top Bottom