Alright folks, here we go. Credit to Koush for the original, it took me a few tries to get the orientation and image format right.
Requirements: .NET Framework, 2.0 or later
DISCLAIMER: Not responsible for anything you might do. This is writing a file to your internal flash that kicks off at boot, so there exists the possibility that something could go catastrophically wrong and you hose your PDN. The file size is hardcoded in the program, but you should check anyways before flashing to make sure it is the EXACT same file size as a stock logo file (about 1.83 MB).If this all sounds scary and horrible, just remember: This adds nothing to the functionality of the novel. It is the very definition of an unnecessary mod. If you do it, don't come to me complaining that your Novel suddenly caught fire or peed on the rug.How to generate a custom logo file[list type=decimal][*] Run program[*] Click "Open" to open an image. As a note, this program takes in LANDSCAPE images, and the RIGHT of the image will be the TOP of the PDN (closest to the logo).[*] Click "Convert"[*] A file "logo.custom" will be created in the same directory as the program. Move it or rename it to something else if you want to make a bunch of different logos, because it will always overwrite.[/LIST]
How to flash a custom logo file[list type=decimal][*]Drop the logo.custom file into your adb directory.[*] Grab the file "fuse" from a PDN update zip file and put it into your adb directory.[*] Run the following commands.
- adb push fuse /data/
- adb shell chmod 777 /data/fuse
- adb push logo.custom /data/
- adb shell /data/fuse logo /data/logo.custom
- adb shell rm /data/logo.custom
- adb shell reboot (optional, either reboot or shutdown yourself)
[/LIST]That should do it! If yo have already done these commands, and want to flash a different logo, you can start at (c) since fuse will already be pushed over and chmod'ed