Kindle 4 Custom Screen Savers
Early Kindles allowed you to use your own images as screen savers, this feature was removed in later models. Thankfully people much smarter than me had written custom firmware giving you this feature back. Unfortunately this firmware hack doesn’t work with the latest 4th generation non-touch (NT) Kindle.
There is however, still a way of getting this functionality on the Kindle 4 NT, but it is quite fiddly and requires you to have some knowledge of Linux file systems, basic networking and SSH. I achieved this using a Linux (Ubuntu) PC, there instructions are probably largely similar for MACs too. Windows users will have to install some extra software tools and the networking bit will be different too (Don’t ask – I won’t know).
Basically all we’re going to do is move the screensaver images folder to the part of the kindle that is accessible over USB and creating a symbolic link to this location. However, the route from here to there is a bit contrived. If you’re not sure what you’re doing it’s best to ask a techo-literate friend to help out. Oh, it should also go without saying that this probably invalidates your warranty too.
Diagnostic Mode
The first thing we need to do is put the Kindle in to Diagnostic Mode.
- Connect the Kindle to your PC with the USB cable.
- Create a file on the Kindle called
ENABLE_DIAGS - Unmount the Kindle and disconnect the USB cable.
- Restart the Kindle
[MENU] Settings [MENU] Restart
This will take a few minutes. - You should now be in Diagnostic Mode.
Gaining Root Access
Next we need to connect to the Kindle as root which will allow us to fiddle around with it.
- Connect the Kindle to your PC with the USB cable. It should NOT mount.
- Enable USB Networking from the menu.
Misc individual diagnostics > Utilities > Enable USBNet - The Kindle should now be a network device on your PC.
ifconfig - Configure a IP address for the device.
ip addr add 192.168.15.241/24 dev usb0 - You should now be able to SSH in to the Kindle as root.
ssh root@192.168.15.244
The password is “mario”.
Edit: If “mario” doesn’t work try this tool. - You now have root access to your Kindle
Moving the Screen Savers
Now we’re going to move the screensavers from their existing location to a new folder in /mnt/us/, which is the folder accessible via USB.
- First mount the required partition.
mount /dev/mmcblk0p1 /mnt/base-mmc - Backup the existing screensavers.
mv /mnt/base-mmc/opt/amazon/screen_saver/600x800 /mnt/base-mmc/opt/amazon/screen_saver/600x800.bak - Create a folder for custom screen savers.
mkdir /mnt/us/screensaver - Create a link from the screen saver location to the new folder.
ln -sfn /mnt/us/screensaver /mnt/base-mmc/opt/amazon/screen_saver/600x800 - You can optionally copy the existing screen savers to the new folder if you want to keep them.
cp /mnt/base-mmc/opt/amazon/screen_saver/600x800.bak/* /mnt/us/screensaver/ - End the SSH session.
exit - Exit Diagnostic Mode
Exit, Reboot or Disable Diags > Disable Diagnostics > To continue – FW LEFT - Wait a few minutes for the Kindle to reboot.
- That’s the screen savers moved!
Setting Custom Screen Savers
Now you can copy your own screen saver images to your Kindle. All you need to do is connect your Kindle to your PC with the USB cable and copy the images you want in to the screensaver folder.
The images files must be 600×800 pixels. I think they also have to be PNG files and 72dpi in 32bit indexed greyscale. Some people on the forums have said that this isn’t necessary, others say it is. But this format works fine for me where others didn’t.
There are various sites out there with Kindle screen savers to download, you may or may not need to do some image conversion. I leave it to you to experiment.
You also have to researt the Kindle fully ([MENU] Settings [MENU] Restart) before the new screen savers will work.
Have fun!
Edit: Here’s the original Kindle 4 Screen Savers.