View Single Post
Old 06-13-2012, 06:15 AM   #5
Gondolkodo
Member
Gondolkodo began at the beginning.
 
Gondolkodo's Avatar
 
Posts: 24
Karma: 10
Join Date: Jun 2012
Location: Budapest/Hungary
Device: Kindle Paperwhite (2nd gen)
You just have to SSH into the kindle (e.g. with the USBnet-methode) and then create a RUNME.sh in the /mnt/us with the following content:

Code:
mntroot rw
if [ ! -f /var/local/adunits.bkp ]; then
	mv /var/local/adunits /var/local/adunits.bkp
	touch /var/local/adunits
fi
mntroot ro
Save, exit and make the following:
Code:
chmod +x /mnt/us/RUNME.sh; mntroot rw
Make a backup about the mntus.params file with this:
Code:
cp /var/local/system/mntus.params /var/local/system/mntus.params.BKP
Extend the original mntus.params with the followings:
Code:
if [ -e /mnt/us/RUNME.sh ]; then
	sh /mnt/us/RUNME.sh
fi
If you would like to see a log then change the "sh /mnt/us/RUNME.sh" with "sh /mnt/us/RUNME.sh > /mnt/us/RUNME.log"

If you are ready, just create and link the screensaver folder, just like before:
Code:
mkdir /mnt/us/screensaver
mount /dev/mmcblk0p1 /mnt/base-mmc
mv /mnt/base-mmc/opt/amazon/screen_saver/600x800 /mnt/base-mmc/opt/amazon/screen_saver/600x800.bkp
ln -sfn /mnt/us/screensaver /mnt/base-mmc/opt/amazon/screen_saver/600x800
exit
As far as I know this is the only black/hackway and there's no "block the ads" and "put screensavers" hack.
I tried it on my own K4 NT SO, works.

Last edited by Gondolkodo; 06-13-2012 at 06:35 AM.
Gondolkodo is offline   Reply With Quote