Jump to content

Changing Boot Sounds or Logos


Recommended Posts

Guest jaffacake
Posted (edited)

Since installing Raidroid 1.1 I had the concern of an extremely LOUD boot sound.

I decided to find out how to turn it off and let everybody know how.

It turned out to be much simpler than I thought. The method, I believe, will work with all ROMs.

There is a file in /system/media/bootscreen called boot_animation.xml - this contains the script that runs on startup.

First you need to copy that file off your phone for editing. Use any method you wish, I used adb

adb pull /system/media/bootscreen/boot_animation.xml boot_animation.xml

Now, in your current folder, you will have a copy of that file. You can edit it in notepad.

Here is mine:

<?xml version="1.0" encoding="utf-8"?>

<!--

* Copyright © 2008 HTC Inc.

*

-->

<!-- For new bootup animation

<BootConfiguration>

<BootAnimation

image="/system/media/bootscreen/boot.gif"

audio="/system/media/bootscreen/boot.mp3"

screenX="100" (optional)

screenY="130" (optional)

useAudio="0" // 1: true ; 0:false (optional)

/>

</BootConfiguration>

-->

<!-- For cropped version -->

<BootConfiguration>

<BootAnimation

image="/system/media/bootscreen/boot.gif"

audio="/system/media/bootscreen/boot.mp3"

screenX="40"

screenY="0"

useAudio="0"

/>

</BootConfiguration>

<!-- For full screen version -->

<!--BootConfiguration>

<BootAnimation

image="/system/media/bootscreen/boot.gif"

loopimage="/system/media/bootscreen/boot.gif"

audio="/system/media/bootscreen/boot.mp3"

useAudio="0"

/>

</BootConfiguration-->

You will see, I've highlighted the changes I made in bold.

I've disabled the audio completely but I could, for example, change the image or audio to anything I wanted. If you choose to change the image or sound file, be careful. This script runs at startup and I'm guessing that if you configure it wrongly that you may not be able to boot the phone.

Once your phone is edited, you now need to upload the amended file back to the phone. Again, I used adb. (thanks DarthOps for the remount help)

adb remount

adb push boot_animation.xml /system/media/bootscreen/boot_animation.xml

All done, now reboot your phone to test.

Edited by jaffacake
Guest 42turkeys
Posted
Since installing Raidroid 1.1 I had the concern of an extremely LOUD boot sound.

I decided to find out how to turn it off and let everybody know how.

It turned out to be much simpler than I thought. The method, I believe, will work with all ROMs.

There is a file in /system/media/bootscreen called boot_animation.xml - this contains the script that runs on startup.

First you need to copy that file off your phone for editing. Use any method you wish, I used adb

adb pull /system/media/bootscreen/boot_animation.xml boot_animation.xml

Now, in your current folder, you will have a copy of that file. You can edit it in notepad.

Here is mine:

You will see, I've highlighted the changes I made in bold.

I've disabled the audio completely but I could, for example, change the image or audio to anything I wanted. If you choose to change the image or sound file, be careful. This script runs at startup and I'm guessing that if you configure it wrongly that you may not be able to boot the phone.

Once your phone is edited, you now need to upload the amended file back to the phone. Again, I used adb. (thanks DarthOps for the remount help)

adb remount

adb push boot_animation.xml /system/media/bootscreen/boot_animation.xml

All done, now reboot your phone to test.

Good tutorial, thanks! Now if only all devs did this by default...

Guest Wite_Noiz
Posted

Perfect! Now I'm not so worried about rebooting :rolleyes:

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.