Rooted HD 7 data local boot anim changes - 7" Kindle Fire HD General

So, it's not really a problem, but I don't understand what's happening at all. I rooted my HD7 with Kindle Fire Aide, and used it for a long time. I then changed the boot animation by putting a zip in the system/media folder. It took a little while to shut down, but showed the new anim when it booted up again. I rebooted it again just to make sure. Then, I tried to change it again by doing the exact same thing, but it didn't change that time. (It booted using the 2nd boot anim) So then I discovered that the /data folder had magically populated, and that the boot anim had been copied to the /data/local folder. I replaced the boot anim zip with the one I wanted, and it works, but it only plays once, and then it's just black until the Kindle is on.
Does anybody know what happened with the /data/local thing? There was nothing in the /data folder before I did this.

Geckodudes said:
So, it's not really a problem, but I don't understand what's happening at all. I rooted my HD7 with Kindle Fire Aide, and used it for a long time. I then changed the boot animation by putting a zip in the system/media folder. It took a little while to shut down, but showed the new anim when it booted up again. I rebooted it again just to make sure. Then, I tried to change it again by doing the exact same thing, but it didn't change that time. (It booted using the 2nd boot anim) So then I discovered that the /data folder had magically populated, and that the boot anim had been copied to the /data/local folder. I replaced the boot anim zip with the one I wanted, and it works, but it only plays once, and then it's just black until the Kindle is on.
Does anybody know what happened with the /data/local thing? There was nothing in the /data folder before I did this.
Click to expand...
Click to collapse
the files in /data don't show up until you enable root setting for your file manager. not sure why the boot animation only plays once though. maybe it is something with the stock ROM.

zander78 said:
the files in /data don't show up until you enable root setting for your file manager. not sure why the boot animation only plays once though. maybe it is something with the stock ROM.
Click to expand...
Click to collapse
The other animations play more than once, so it might be something with the zip file. Idk.
Thanks for your info.

Related

Captivate Boot Animations and Sounds

Wanted to get rid of the stock startup animation and sounds here is how I did it.
/system/etc/PowerOn.wav
/system/media/bootsamsung.qmg
/system/media/bootsamsungloop.qmg
I renamed those 3 files and thats all it took, killed the two boot animations and sounds. So now I get the Initial white AT&T screen a long black period followed by the lock screen.
Now if someone would decipher how to manipulate these QMG files. It looks like others have found a way around them possibly ( http://forum.sdx-developers.com/themes/bootanimation-zip-(testers-needed)/ ), not too sure.
Anyone have the stock startup and shutdown animations from the Galaxy S? I want to de-brand this as much as I can.
More data from inside the /system/bin/bootanimation2nd
debug.sf.nobootanimation 0 BootAnimation boot animation disabled %0 80 /data/local/bootanimation.zip /system/media/bootanimation.zip desc.txt descMap is null %d %d %d p %d %d %s images/android-logo-mask.png images/android-logo-shine.png SurfaceFlinger died, exiting... linkToComposerDeath failed (%s)
So it looks like we have some tinkering to do.
ok if you take the bootanimation zip files from the other forum and place them in /system/media and chmod to 644 and chown to root you can launch the bootanimation file in /system/bin remotely with adb and the animation shows on the screen of the phone. So we are on the right path. Rebooting the phone does not cause the animation to play however. Anyone who wants to lend a hand is welcome!
LOCATIONS OF SOUNDS AND ANIMATIONS
Startup sound;
/system/etc/PowerOn.wav
Startup animation;
/system/media/bootsamsung.qmg
/system/media/bootsamsungloop.qmg
/system/bin/bootanimation
/system/bin/bootaniamtion2nd
Shutdown sound;
/system/media/audio/ui/shutdown.ogg
Shutdown video (directory of .pngs);
/system/media/shutdown/
THIS IS WHAT I FOUND ON ANOTHER SIGHT
You can just delete all other files and folder so you only have fx if your bootscreen is placed like this: META-INF and system system> customize> resource>bootanimation.zip
That should be your only files and folders. Of course if you your bootscreen is placed in data/local/bootanimation.zip then that should be your only directories and files
THIS IS HOW I DID IT WHEN I HAD AN ARIA( not sure but seems like it should be same?)
1. Copy the NEW bootanimation.zip of your choice in SDK Folder
2. Open up CMD
3. cd C:\AndroidSDK\tools (or were ever you SDK files are)
4. adb remount
The filesystem is mounted read only. You need to mount it read/write.
5. adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
6. adb push bootanimation.zip /system/media/bootanimation.zip
7. adb push bootanimation.zip /data/local/bootanimation.zip
To return to read only,
8. adb shell mount -o remount,ro -t yaffs2 /dev/block/mtdblock4 /system
9. Reboot and there you go
HOPE this helps
I've renamed some of the files to see if they do anything also executed a few of the BINs.
/system/bin/bootanimation -- Displays "ANDROID" with a shine going across the text. This animation is not seen at any point during boot, renaming the file did nothing.
/system/bin/bootaniamtion2nd -- Displays "ANDROID" in plain android font. This animation is not seen at any point during boot, renaming the file did nothing.
/system/bin/playlogo -- Executing this file (atleast via the adb shell, although it does output "=============> 1" the exits after a few seconds.) did not appear to do anything. Renaming this file did not appear to change anything in the boot process.
/system/bin/playlogos1 -- Executing this file via the adbshell caused the 2 boot videos (not the "AT&T World Phone" BIOS splash image, just the ATT bars with fire balls and the galaxy S animated logo) to play. This cause similar out put to playlogo in the adb shell, except it counted to 5 and never exited. A Ctrl+C in DOS forces the adb shell to quit which causes the bin file to halt execution also.
I'm going to try and open the playlogos1 file and/or try to find a qmg player, we may just have to replace the qmg files to MOD the boot animation.
Some relevant source ( http://github.com/Dieken/SurfaceFli...rks/base/cmds/bootanimation/BootAnimation.cpp ). Its starting to look like the qmg files are raw frame buffer information.
I went through the playlogo and playlogos1 bin files again with bvi (linux app for viewing binary files) one of the legible sections before the part that points to the *.qmg file loads a decoder. The qmg files appear to be Qmage files.
See quramsoft.com/solution_e/qmage.asp
sorry cant post links yet.
kenjindomini said:
I went through the playlogo and playlogos1 bin files again with bvi (linux app for viewing binary files) one of the legible sections before the part that points to the *.qmg file loads a decoder. The qmg files appear to be Qmage files.
See quramsoft.com/solution_e/qmage.asp
sorry cant post links yet.
Click to expand...
Click to collapse
You may have nailed it on the head which is a good find, but unfortunately it looks like we will never be able to edit one of these.
So I take it no one has yet attempted to use a bootanimation.zip like on the Samsung moment http://forum.sdx-developers.com/themes/(how-to)-bootanimation-zip/
I might give this a try later today:
Rename playlogos1 -> playlogos1.orig
find sexy bootanimation.zip on the interwebs and load it into /system/media
I'll report back with my findings, even if they're depressing.
kenjindomini said:
So I take it no one has yet attempted to use a bootanimation.zip like on the Samsung moment http://forum.sdx-developers.com/themes/(how-to)-bootanimation-zip/
I might give this a try later today:
Rename playlogos1 -> playlogos1.orig
find sexy bootanimation.zip on the interwebs and load it into /system/media
I'll report back with my findings, even if they're depressing.
Click to expand...
Click to collapse
Yes I have tried several, and while you can launch them manually they do not trigger on reboot.
Yeah
I even tried to chmod the file in both data/local and system/media to mode 777 and still just a black screen.
Looks like we are waiting for a hacked kernel.
Sent from my SAMSUNG-SGH-I897 using XDA App
kenjindomini said:
Yeah
I even tried to chmod the file in both data/local and system/media to mode 777 and still just a black screen.
Looks like we are waiting for a hacked kernel.
Sent from my SAMSUNG-SGH-I897 using XDA App
Click to expand...
Click to collapse
In the meantime I am looking to see exactly how/where these are being called in the boot process.
Ok since things just didnt seem to be working here is what I did. I renamed the playlogo and playlogos1 file and replaced them respectively with renamed copies of
/system/bin/bootanimation
/system/bin/bootaniamtion2nd
then put a bootanimation.zip in both /system/media and /data/local then when I rebooted I get the plain white at&t screen. followed by a short black screen, and then the bootanimation.zip.
So this works it just has a 7 second or so black screen.
Ok, something weird is happening. I'm trying to rename /system/etc/PowerOn.wav to PowerOn.wav.bak because I have downloaded the Bootsamsung.qmg, Bootsamsungloop.qmg and PowerOn.wav from the I-9000 but every time I rename /system/etc/PowerOn.wav to *.bak using root explorer it says its renamed successfully but then if I do a view refresh, its right back to how it was originally. Same thing if I just go and try to outright delete it, it looks like its deleted until I do a view refresh then its right back there. Like I cant get rid of it at all. Anybody know whats going on??
On another note I copied the Bootsamsung.qmg and bootsamsungloop.qmg from the I-9000 to the folder /system/media and just let it overwrite the orignals. Now the flying att 3G antenna stuff is gone. It goes from the white world phone screen to a black screen then to the Galaxy S animation. But its still playing that super loud whoosh sound because I cant get rid of the original PowerOn.wav file to save my life.
The PowerOn.wav from the I-9000 is 5 seconds long, its the same as the AT&T one except it doesnt have the first two seconds that contains the really loud and annoying "Whoooosh".
I had this problem at first. Make sure you are mounted r/w. If that doesnt work move the file out of the folder. I seem to recall that one file was a pita for me too.
If you get it working let us know!
rahlquist said:
I had this problem at first. Make sure you are mounted r/w. If that doesnt work move the file out of the folder. I seem to recall that one file was a pita for me too.
If you get it working let us know!
Click to expand...
Click to collapse
HaHa, that worked great. Thanks.
I was mounted as r/w in root explorer. I tried renaming and deleting dozens of times with no success, never really thought about move. It let me move it right out of /system/etc. Then I was able to copy in the new PowerOn.wav from my sdcard. Then I could rename the original to PowerOn.wav.bak, then move it back to /system/etc just in case for the future. So now I dont hear that really loud and annoying "whoosh".
Is the /video/shutdown folder with the 60 frames of .pngs the same as the startup animation perhaps played backwards? I'm thinking of making my own custom animation and replacing those files to see how it looks.
rahlquist said:
In the meantime I am looking to see exactly how/where these are being called in the boot process.
Click to expand...
Click to collapse
If you look in the init.rc there is BOOTCLASSPATH line and it lists framework files, they are compiled java code (*.JAR) one of these files or a modified version of the android kernel would be responsible for executing the playlogos1 bin file. playlogos1 is the only file on the of the 4 in that directory that we have talked about that does anything during boot on the captivate. playlogo seems to be remnant from the older samsung androids (E.G the moment). The 2 bootanimation bin files just display the word android in green android style font 1 with a shine and 1 plain.
I've looked through almost every system file and I can think of, there is no reference to the playlogs1 file that can be viewed in plain text. It would be the very first thing to be called soon as linux begins to load. The ATT world phone splash image I would assume, just like on a pc, hides the BIOS/POST output and the boot animation is hiding all of the linux init output. though it does sadden me that renaming the files the play the boot animation does not cause all the boot text to display.
Darkeligos said:
Is the /video/shutdown folder with the 60 frames of .pngs the same as the startup animation perhaps played backwards? I'm thinking of making my own custom animation and replacing those files to see how it looks.
Click to expand...
Click to collapse
This is not the case. the playlogos1 bin file, the file responsible for launching the boot animation, loads a QMAGE decoder before loading the 2 *.QMG files. If look back to my previous post on the first page there is a link to the developer of QMAGE and its a compressed library of images that get decompressed on-the-fly.
@the guy with the I9000 boot animations and audio, Dude where did you get those? i9000 forum? link us? Attach here? Please?
kenjindomini said:
@the guy with the I9000 boot animations and audio, Dude where did you get those? i9000 forum? link us? Attach here? Please?
Click to expand...
Click to collapse
Yes, this needs to be mandatory - if you've got something good working that gets rid of the AT&T JUNK sounds and animation, then you gotta attach them on this thread and tell us the steps you took to get it going! Thanks in advance!

[Q] Droid 2 Boot Animation

Hello everyone,
I have recently been messing around with my droid 2 and was able to change the boot screen successfully by doing the following commands:
PHP:
adb push bootanimation.zip system/media/
After running this command I had the new animation and that works great. My question is if anyone know how to incorporate a boot up sound with this. I have tried creating a bootscreen folder and having the boot_animation.xml in both the system/media path and the system/media/bootscreen path, however to no success. It is to be noted that when I removed the bootanimation.zip from the system/media folder, it defaults to the original blue android loading animation as if it were not seeing a bootscreen folder.
theecho said:
Hello everyone,
I have recently been messing around with my droid 2 and was able to change the boot screen successfully by doing the following commands:
PHP:
adb push bootanimation.zip system/media/
After running this command I had the new animation and that works great. My question is if anyone know how to incorporate a boot up sound with this. I have tried creating a bootscreen folder and having the boot_animation.xml in both the system/media path and the system/media/bootscreen path, however to no success. It is to be noted that when I removed the bootanimation.zip from the system/media folder, it defaults to the original blue android loading animation as if it were not seeing a bootscreen folder.
Click to expand...
Click to collapse
What is the boot animation that you used and is is just as simple as removing the boot animation that is in the system media file and replacing it with another boot animation like what was done with the D1?
Yes it was pretty simple just do the following
PHP:
adb pull system/media/bootanimation.zip
This will pull you current boot animation. Move it somewhere to keep as a backup.
PHP:
adb push bootanimation.zip system/media/
This is assuming bootanimation.zip is located in you android sdk's tools folder. You can use any of the bootanimations that are an assortment of pngs.
Sent from my DROID2 using XDA App
I wonder what would happen if you had one in data/local
bump*
Anyone have any further info on this? I would really like a startup sound again.
theecho said:
Yes it was pretty simple just do the following
PHP:
adb pull system/media/bootanimation.zip
This will pull you current boot animation. Move it somewhere to keep as a backup.
PHP:
adb push bootanimation.zip system/media/
This is assuming bootanimation.zip is located in you android sdk's tools folder. You can use any of the bootanimations that are an assortment of pngs.
Sent from my DROID2 using XDA App
Click to expand...
Click to collapse
Ok if the boot animation is on the system media file like the D1 why cant we just take a boot animation and delete it out of the system media and replace it with a new one? Do you have to ADB push it?
The boot animation is kept in the system/media folder. If you can replace this by another means, it will work. I chose to use adb push as I was already in my command line due to an application i was writing.
help
hey guys, sorry for the noob question, but what r u guys using to zip your finnished product? (not a flashable zip) just the zip u can push or use root expor to just place in correct spot. i know you cant use anycompression, but ive tryed everything and i must be doing something wrong. to make sure my zip methods are not adding any compression, i pulled my orig bootanimation, which zipped is 6114kb, i unzipped, then rezipped, and i keep getting dif sized zip files.. if done right it should be the exact same size right?
using the following this is what i get
ok oring is 6114kb, heres what the others do, 7zip 6124kb(bigger) PC zip client 6086kb and winrar is the closest at 6119kb
any advice would be greatly apr
Does doing ADB push require you to plug the phone into the computer in PC mode?
Also, can you change boot animations on stock ROM, or only on custom ROM?
I downloaded a bootanimation.zip file that's 480x854 pixels, the same as the D2's screen. I also looked at the default bootanimation.zip file, which is 480x480. Does the resolution matter at all, or can the phone display it either way?
Tappin' and Talkin' with Tapatalk
theecho said:
Yes it was pretty simple just do the following
PHP:
adb pull system/media/bootanimation.zip
This will pull you current boot animation. Move it somewhere to keep as a backup.
PHP:
adb push bootanimation.zip system/media/
This is assuming bootanimation.zip is located in you android sdk's tools folder. You can use any of the bootanimations that are an assortment of pngs.
Sent from my DROID2 using XDA App
Click to expand...
Click to collapse
No need, you can download Super Manager from Market, using file manager function and get root access to copy directly.
Have fun.
Since this is bumped anyway, for whatever reason sounds will not work on boot with the default Rom. MIUI and other Roms are necessary for this mod.

[Q] Boot animation

Hi,
I just tried to install a custom boot animation thru root explorer, following Master's instructions. When I go to paste the boot animation it says cannot paste read only. Any Ideas? Thanks in advance.
vabeach454 said:
Hi,
I just tried to install a custom boot animation thru root explorer, following Master's instructions. When I go to paste the boot animation it says cannot paste read only. Any Ideas? Thanks in advance.
Click to expand...
Click to collapse
I am not familiar with "Root Explorer", so i'm not 100% sure.
You most likely need to enable the root feature.
if you do not have root access you cannot paste into a -ro file.
You could also use Android Commander (Windows Program). I find that the easiest way to do it.
I am perma rooted (s= off) and root explorer has root privlages, so I dont know what else to say. Master's directions were very clear & easy it just wont allow me to paste.
vabeach454 said:
I am perma rooted (s= off) and root explorer has root privlages, so I dont know what else to say. Master's directions were very clear & easy it just wont allow me to paste.
Click to expand...
Click to collapse
Try Super Manager or Android Commander.
vabeach454 said:
Hi,
I just tried to install a custom boot animation thru root explorer, following Master's instructions. When I go to paste the boot animation it says cannot paste read only. Any Ideas? Thanks in advance.
Click to expand...
Click to collapse
in root explorer, at the very top of the page youre pasting in, there should be a button that says set r/w. make sure to press that before attempting to paste, otherwise you will get the error you mentioned.
Thanks, I did that and it pasted. I ended up with two files in there and had no boot animation at all and when powering up it went directly to the lock screen. Since that I restored my backup to undo the changes I made. I dont know what went wrong, but would like to try again, as I do want a cool boot animation. Any help would be greatly appreciated.
vabeach454 said:
Thanks, I did that and it pasted. I ended up with two files in there and had no boot animation at all and when powering up it went directly to the lock screen. Since that I restored my backup to undo the changes I made. I dont know what went wrong, but would like to try again, as I do want a cool boot animation. Any help would be greatly appreciated.
Click to expand...
Click to collapse
have you tried using Android Commander?
http://forum.xda-developers.com/showpost.php?p=11104925&postcount=53
to check the boot animation from the terminal type "adb shell" a "#" should appear then type bootanimation. it should so up on the phone, to get out of it hold control and tap C. If you do it from the terminal emulator on the phone only a battery pull will get you out of the cycle.
vabeach454 said:
Thanks, I did that and it pasted. I ended up with two files in there and had no boot animation at all and when powering up it went directly to the lock screen. Since that I restored my backup to undo the changes I made. I dont know what went wrong, but would like to try again, as I do want a cool boot animation. Any help would be greatly appreciated.
Click to expand...
Click to collapse
Dude, what Rom are you on? Depending on that, the bootainmation needs to be labeled differently.
Sent from my HTC Glacier using XDA App
Depending on the rom, you will also need to rename the boot animation to the same name as the one on the current rom... for instance on my iced glacier rom, the standard boot animation is named TMUS_bootanimation, rename the file to that same file name and copy it to the same folder and select to over ride the current file in the folder
Sent from my HTC Glacier using XDA App

[Q] Why don't custom boot animations work for me on nightly 150?

I had no problem changing out the bootanimation.zip on cm 7.0.3 for custom ones, but now I'm on nightly 150 and any time I try to change it, I just get a small shiny blue "android" logo instead of my custom one. I've tried placing the bootanimation.zip in /system/media and /data/local and all I get is the small "android" logo boot animation. I can replace the original zip and I get the standard cyan android on skateboard with rotating arrow, no problem.
It simply refuses to use custom ones though (ones which worked fine on 7.0.3). Any clues as to why? Thanks.
I use boot animation through Root Tools app and they work fine from Phiremod era since now.
Unleashed from Nook Color on Cm7 Nightly 162 @1.200Mhz
Thank you! It FC's after it downloads the animations, but it does set the new one succesfully. Awesome.
Just to follow up, Root Tools was on default setting to place bootanims in /data/local. It only FC'd a couple of times and no FC after that.
I tried again the manual method of placing my bootanim in /data/local using File Expert and it still doesn't work.
RT only seems to have a set selection of bootanims and I really wanted my own unique one so I renamed my desired one as bootanimation_backup.zip, dropped it in the rootools folder on sd card, then restored it using root tools. Thats the only way I could get my own ones to work.
Cheers.

Have you changed your Boot Animation?

I would like to change the boot animation on my Verizon G4, but I'm scared to without TWRP. I was curious if any of you braver souls have done so successfully yet?
Lightshield said:
I would like to change the boot animation on my Verizon G4, but I'm scared to without TWRP. I was curious if any of you braver souls have done so successfully yet?
Click to expand...
Click to collapse
You won't be able to without a recovery
Ah, ok. I thought all you had to do was use something like Root Browser to move a new Bootanimation.zip to the System Media folder.
Good thing I asked first!
Lightshield said:
Ah, ok. I thought all you had to do was use something like Root Browser to move a new Bootanimation.zip to the System Media folder.
Good thing I asked first!
Click to expand...
Click to collapse
Not sure if it works that way, but I def wouldn't try it haha
well.. worst case.. you cant boot back into system and have to reflash the system.img thru download mode. keep the rooted system.img on internal sdcard for any risky changes. then ur only a few minutes away from a fix. but as long as u set the proper permissions on the files you're replacing it should go ok and you wont even run into this worst case situation.
with that said.. I don't own the vzw model so I havent swapped theirs out specifically.. but I have changed my boot ani on my h815. if you're not sure which permissions you need to set on the file... just view the permissions of the original file thru rootexplorer/es file explorer... then set those back to your new file afterwards.
Lightshield said:
I would like to change the boot animation on my Verizon G4, but I'm scared to without TWRP. I was curious if any of you braver souls have done so successfully yet?
Click to expand...
Click to collapse
Just rename the old bootanimation zip to .bak move the one you want into place and change permissions to 644 in root browser.
Unless the boot loader checks file sizes and signatures which I doubt for the boot animations.
Yeah, I tried it yesterday. It bootlooped twice then booted with no bootanimation. YMMV
bilbobrian said:
Yeah, I tried it yesterday. It bootlooped twice then booted with no bootanimation. YMMV
Click to expand...
Click to collapse
Your permissions were wrong you want them to be 644.
I used solid explorer on my T-Mobile unit to remove that gods awful boot sound and install the nexus boot animation, forgot to set permissions and that's what happened boot without animation
godsfilth said:
Your permissions were wrong you want them to be 644.
I used solid explorer on my T-Mobile unit to remove that gods awful boot sound and install the nexus boot animation, forgot to set permissions and that's what happened boot without animation
Click to expand...
Click to collapse
i did the same. the goddamn at&t poweron.ogg is annoying as hell.
Yeah, I have liveboot running, and a wireframe spinning android dude animation in the background. Little more interesting than the default.
I got brave and decided to try out some boot animations I downloaded the other day from a G3 Boot Animation thread.
I moved them with Root Browser and made sure to set permissions to 644 and it worked!
For some reason though the one I download of the Super heroes that change? Maybe you know what I'm talking about. Had it on Nexus 6 and it was fast and fluid. On the G4 here it was in slow motion and stuttering. Don't know if that's a fault of the -G4 or the source file though.
Bottom line, changing the Bootanimation.zip manually works just fine as long as you remember to set the permissions.
Worked for me too
Dennisg34 said:
Not sure if it works that way, but I def wouldn't try it haha
Click to expand...
Click to collapse
Sure you can. I did just that on a rooted AT&T version. Used Root Explorer, renamed existing file to .orig. Copied new file from SD card. rebooted, and boom.
Changed my bootanimation the minute we got root. Using the stock LG instead of the Verizon one.
slick_shoes said:
Changed my bootanimation the minute we got root. Using the stock LG instead of the Verizon one.
Click to expand...
Click to collapse
Mind posting it? Thanks.
Worked great. I use the LG G3 Matrix Boot Animation found here on xda. Couldn't find any shutdown Animation. Renamed BOTH (bootanimation and shutdown Animation from zip to zip.back). Works great. No Shutdown Animation anymore is just fine with me! [emoji1]
Sent from outer space using telepathy
---------- Post added at 01:50 PM ---------- Previous post was at 01:47 PM ----------
Lightshield said:
I moved them with Root Browser and made sure to set permissions to 644 and it worked!
For some reason though the one I download of the Super heroes that change? Maybe you know what I'm talking about. Had it on Nexus 6 and it was fast and fluid. On the G4 here it was in slow motion and stuttering. Don't know if that's a fault of the -G4 or the source file though..
Click to expand...
Click to collapse
Did you remember to set the Stick Bit? If not, does it help with the stuttering?
Sent from outer space using telepathy
Not sure what the Stick Bit is.
Set/change the permissions... how do you do that? I have and use root explorer, first thing i did with root was remove a lot of UI sounds entirely (.bak for their original files) includingthe startup sounds.
d00mz said:
Sure you can. I did just that on a rooted AT&T version. Used Root Explorer, renamed existing file to .orig. Copied new file from SD card. rebooted, and boom.
Click to expand...
Click to collapse
Dont forget to set the permission to 644 also.
roosta said:
Set/change the permissions... how do you do that? I have and use root explorer, first thing i did with root was remove a lot of UI sounds entirely (.bak for their original files) includingthe startup sounds.
Click to expand...
Click to collapse
In root explorer long press the file and in the pop up select permissions. 0644 looks like a backwards 7 in the checkboxes.
20degrees said:
Mind posting it? Thanks.
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=3168785

Categories

Resources