Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle > Kindle Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 03-21-2016, 02:42 PM   #16
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
That link is broken, edit your post with a working link please.
knc1 is offline   Reply With Quote
Old 03-22-2016, 01:13 AM   #17
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,422
Karma: 85397180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
Quote:
Originally Posted by mjkarma View Post
do you mean this link https://www.mobileread.com/forums/sho...postcount=1597
i did so is there a chance ??installed the hotfix after jailbreak . and then factory reset my device and updated to 5.7.2 is there a chance???
If you factory reset and then applied a firmware update, it doesn't matter what state your device was in, it is no longer jailbroken.

The factory reset wiped the jailbreak and required manual intervention to repair, and the firmware update deleted the last failsafe that would have allowed you to repair the jailbreak.

...

I don't know why this is so hard for people to intuit (maybe they are too used to Android or something? Either way, why not ask before doing mysterious things???).

DO NOT FACTORY RESET! EVER!
Not unless your Kindle is seriously messed up to begin with and someone here advises you to do a factory reset as part of a debricking procedure.
eschwartz is offline   Reply With Quote
Advert
Old 03-23-2016, 02:38 PM   #18
mjkarma
Enthusiast
mjkarma began at the beginning.
 
Posts: 34
Karma: 10
Join Date: Mar 2016
Device: pw3
Quote:
Originally Posted by n1kk00 View Post
So I was not completely satisfied with v5.7.2.1 and decided to downgrade and go back to version 5.4.5 (mine's a jailbroken 9017 4GB PW2 and, according to the wiki, needs this version to run KUAL). After reading a bunch of threads, posts and readmes I came up with a list of steps and decided to go ahead and do it (after verifying my list with @knc1). All went well and now I'm successfully back to v5.4.5. Here's what I did (like I said mine's a 9017 4GB PW2 device but I assume it would be applicable for other devices as well).

Important Notice: After completing this tutorial you will lose all your collections, bookmarks, book progress etc. Please consider this before continuing. Also, you do this at your own risk.

Prerequisites:

i) a jailbroken device with the latest jb version (this won't work on non-jailbroken devices as you should be able to boot into diags and ssh into the Kindle)

ii) rescue pack and coward's rescue pack installed - you can find them in NiLuJe's snapshots thread

iii) it would be a good idea to also install the USBNetwork hack (also available in NiLuJe's snapshots thread), setup ssh access (the process is described in the wiki) and try to connect to the Kindle; I used PuTTY on a Windows PC.

Steps:

1. Download the previos firmware update_... .bin you want to downgrade to. Make sure it is not older than the original firmware your device was shipped with! For my device I went with v5.4.5 linked in the wiki

2. Extract the contents of the .bin file using kindletool - you can download it from NiLuJe's snapshots thread. Run the follwing command:

kindletool.exe extract path/to/.bin path/to/output/folder

E.g. on my Windows PC i ran it like that:
Code:
kindletool.exe extract C:\kindletool\update_kindle_5.4.5.1.bin C:\kindletool\output
After extracting the firmware .bin you should be able to locate two files inside the output directory: rootfs.img.gz (the root file system) and uImage (the kernel). On my PC the uImage file was under a imx60_wario directory in the output folder.

3. Connect your Kindle to your PC and put the uImage and rootfs.img.gz files on the root of the usb storage.

4. Eject the Kindle and select Restart from the Kindle settings menu. Do not unplug the USB cable - if you installed the coward's rescue pack the Kindle will automagically enter into diags during the reboot

5. Once into diags, enable USB networking - touch on the following nemu items: N -> U -> Z -> X (as described in ixtab's readme)

6. Once USB networking is enabled you should be able to ssh into the Kindle - in PuTTY connect to 192.168.15.244 ip address, leaving the port to default (22); enter root as the username and mario as the password - you should see the root prompt

7. Clear the database to avoid potential DB schema issues (this will erase all your collections, bookmarks, book progress etc.):

Code:
rm -f /var/local/cc.db
Code:
rm -f /var/local/dcm.db
8. Install the kernel and rootfs (double check those dd commands):

Code:
dd if=/mnt/us/uImage of=/dev/mmcblk0 bs=4096 seek=65
This will copy the contents of uImage into mmcblk0 using 4 Kbyte chuncks with (4096*65=) 260 Kbytes offset

Code:
zcat /mnt/us/rootfs.img.gz | dd of=/dev/mmcblk0p1 bs=4096
This will unzip and copy the contents of rootfs.img.gz into mmcblk0p1 using 4 Kbyte chuncks (rootfs.img.gz is a larger file so it will take some time)

9. Reboot you Kindle:

Code:
idme -d --bootmode main
Code:
reboot
Unplug the USB cable from the Kindle once PuTTY reports it has lost the connection.

10. If you had the latest jb version installed the jailbreak should bridge itself during the reboot. Re-apply any .bin hacks after the device boots. You will also have to redo all your collections, bookmarks, book progress etc.

An interesting thing happened after I downgraded. I turned airplane mode off to sync my cloud collections as I had trouble recreating/viewing them on my device. The popup to register my Kindle appeared (?!) so I re-registered it. During the sync a notice file appeared on my Kindle (Test Kindle Installation Result.azw) saying After that I was unable to launch KUAL (?!). Starting to sweat a little, I re-apllied the latest jailbreak - all was fine after the reboot; I also re-applied my .bin hacks just to make sure. Haven't had issues after that although I usually keep my Kindle in airplane mode.

Special thanks to @knc1, @NiLuJe, @ixtab, @dsmid and all the other guys here for providing invaluable knowedge and tools.
bravo you have a done a great job . if you could find a way to downgrade without jailbreak and serial method . it would have saved thousand desperate reader waiting for a solution to install koreader
mjkarma is offline   Reply With Quote
Old 04-05-2016, 09:01 AM   #19
mjkarma
Enthusiast
mjkarma began at the beginning.
 
Posts: 34
Karma: 10
Join Date: Mar 2016
Device: pw3
shoud we upgrade to 5.7.3.1 or wait for a release of the downgrade ???
or no downgrade gonna be released !!!!!!
mjkarma is offline   Reply With Quote
Old 04-08-2016, 06:02 AM   #20
Arnie97
Junior Member
Arnie97 began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Apr 2016
Device: kpw3 fw5.7.3.1 jb
You've made my day.

My PW3 updated to 5.7.3.1 by accident last night, and I've managed to roll back to 5.6.5 following your steps.

Details:
1. I couldn't find "N" in my diags menu, but later I found sshd was already started, so I skipped step 5.
2. I kept all the databases in /var/local *untouched*, and fortunately it just works.
3. After the recovery, the jb bridged itself during the reboot, and my KUAL still works.

Also many thanks to @knc1, @NiLuJe, @ixtab, and those who help liberate
us from the darkness of the Amazon.

Last edited by Arnie97; 04-08-2016 at 06:18 AM.
Arnie97 is offline   Reply With Quote
Advert
Old 04-08-2016, 08:48 AM   #21
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Visible root of your USB storage:
FOLDER: "update.bin.tmp.partial"
case matters.
knc1 is offline   Reply With Quote
Old 06-08-2016, 09:46 AM   #22
nghia4007
Junior Member
nghia4007 began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Jun 2016
Device: kindle pw2
My kindle is updated to 5.7 too, thanks for your instruction. I was able to downgrade it to 5.4.5.1
nghia4007 is offline   Reply With Quote
Old 06-10-2016, 03:11 PM   #23
Askhat
Junior Member
Askhat began at the beginning.
 
Posts: 6
Karma: 10
Join Date: Jun 2016
Device: Kindle Paperwhite 2013
Hi. Please help me. I have PW2 4GB v5.7.4 with Jailbreak (Jailbroken on 5.6.5).
It is automatically updated when I connect to wifi.
I want downgrade to 5.6.2.1 or 5.6.5.

rescue pack and coward's rescue pack installed.

I put the uImage and rootfs.img.gz files on the root of the usb storage, eject the Kindle and select Restart from the Kindle settings menu, not unplug, but the Kindle will NOT automatically enter into diags during the reboot.
Why?

Last edited by Askhat; 06-10-2016 at 03:48 PM.
Askhat is offline   Reply With Quote
Old 06-10-2016, 04:45 PM   #24
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Because Amazon fixed that "downgrade" update bug.
knc1 is offline   Reply With Quote
Old 06-11-2016, 04:43 AM   #25
Askhat
Junior Member
Askhat began at the beginning.
 
Posts: 6
Karma: 10
Join Date: Jun 2016
Device: Kindle Paperwhite 2013
and I can't downgrade?
Askhat is offline   Reply With Quote
Old 06-11-2016, 09:44 AM   #26
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
@Askhat: If you indeed did *NOT* unplug your device, then you do NOT have the Rescue Pack+Coward's Rescue Pack installed.

Check my snapshots thread for up-to-date packages for those.
NiLuJe is offline   Reply With Quote
Old 06-23-2016, 02:30 PM   #27
susmoka
Enthusiast
susmoka began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Dec 2014
Device: Kindle Paperwhite 2
How do I do this on a Mac (and not PC)?

Thanks!!
susmoka is offline   Reply With Quote
Old 06-23-2016, 02:39 PM   #28
geekmaster
Carpe diem, c'est la vie.
geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.
 
geekmaster's Avatar
 
Posts: 6,433
Karma: 10773668
Join Date: Nov 2011
Location: Multiverse 6627A
Device: K1 to PW3
Quote:
Originally Posted by susmoka View Post
How do I do this on a Mac (and not PC)?

Thanks!!
Same way... Boot to diags SSH shell from kubrick bootable media and flash your downgrade firmware image from there.

This would be easier if kubrick had a menu option to drop into such a diags command shell. Perhaps we should upgrade kubrick to easily do that?

Or instead of kubrick (and even easier) just use any decent bootable USB linux you can get, like this. If you make it a bootable USB flash device, you can also copy your kindle firmware downgrade image files to it as well.

Or perhaps even easier (because we do not need to mess with fastboot), use a linux VM in an emulator that supports "USB passthrough". I use VirtualBox on windows and linux PCs -- I have no Mac so not sure what you should use (perhaps NiLuJe could give you some Mac advice on that).

Last edited by geekmaster; 06-23-2016 at 02:45 PM.
geekmaster is offline   Reply With Quote
Old 06-23-2016, 04:11 PM   #29
susmoka
Enthusiast
susmoka began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Dec 2014
Device: Kindle Paperwhite 2
Quote:
Originally Posted by geekmaster View Post
Same way... Boot to diags SSH shell from kubrick bootable media and flash your downgrade firmware image from there.

This would be easier if kubrick had a menu option to drop into such a diags command shell. Perhaps we should upgrade kubrick to easily do that?

Or instead of kubrick (and even easier) just use any decent bootable USB linux you can get, like this. If you make it a bootable USB flash device, you can also copy your kindle firmware downgrade image files to it as well.

Or perhaps even easier (because we do not need to mess with fastboot), use a linux VM in an emulator that supports "USB passthrough". I use VirtualBox on windows and linux PCs -- I have no Mac so not sure what you should use (perhaps NiLuJe could give you some Mac advice on that).
ok sorry, I think I am a complete noob, so I would need some help about what ''booting'', ''ssh shell / ssh'' and ''diags'' mean, and what you mean by ''flash my downgrade image from there''.

I managed to carry out the jailbreak without any computing jargon understanding, but I am afraid this is too much for me without a bit of explanation / more info on how to do these steps that are in the main post (and I'm on a Mac and not a PC - most tutorials I found are for PC's I assume )

Many thanks in advance for any help guys!

Last edited by susmoka; 06-23-2016 at 04:14 PM.
susmoka is offline   Reply With Quote
Old 06-23-2016, 05:27 PM   #30
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,422
Karma: 85397180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
@geekmaster, if you mean use Kubrick to activate diags mode via USB Downloader connection, that won't work post-KT.
The Rescue Pack and Cowards Rescue Pack is much more reliable.

@susmoka, tell us which steps you are having trouble with.
Most of this is done on the Kindle itself, the main PC/Mac difference will be that Mac should have ssh built in so no need to download PuTTY.
eschwartz is offline   Reply With Quote
Reply

Tags
downgrade firmware, firmware downgrade


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Downgrading jailbroken PW2 phramenma Kindle Developer's Corner 8 05-18-2014 02:25 PM
Kindle 4 Crashed in Diags Mode drajov Amazon Kindle 6 07-25-2012 03:34 PM
HELP kindle 4 diags hawk72 Kindle Developer's Corner 3 05-03-2012 09:42 AM
Kindle Touch Stuck at diags sole Kindle Developer's Corner 13 05-01-2012 08:47 AM
Downgrading Kindle Touch Pink Floyd Amazon Kindle 4 01-22-2012 03:15 PM


All times are GMT -4. The time now is 08:14 PM.


MobileRead.com is a privately owned, operated and funded community.