|
|
#2416 |
|
Junior Member
![]() Posts: 2
Karma: 10
Join Date: Sep 2025
Device: Kindle Oasis (10th)
|
Ever figure this out?
Having the same issue on an Oasis (10th) running 5.17.1.0.3, 4.12GB space available. I put the KUAL installer file in the mrpackages folder and it reboots, but no KUAL booklet. |
|
|
|
|
|
#2417 | |
|
Junior Member
![]() Posts: 2
Karma: 10
Join Date: Sep 2025
Device: Kindle Oasis (10th)
|
Quote:
I downloaded a different version of KUAL. The one I was using and wasn't working was "Update_KUALBooklet_HDRepack.bin" and the one that did work was "Update_KUALBooklet_c6ac782_install.bin". Hope this helps! |
|
|
|
|
|
|
#2418 | |
|
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 17
Karma: 1234820
Join Date: Nov 2023
Device: Kindle Paperwhile 2015 Gen 7
|
Quote:
Clearly https://kindlemodding.org/jailbreaki...ing-kual-mrpi/ makes "quite some" understatement: "If you are using the “fill storage” method to block updates, make sure to free up some space before proceeding with these steps." |
|
|
|
|
|
|
#2419 |
|
Junior Member
![]() Posts: 4
Karma: 10
Join Date: Oct 2025
Device: kindle pw2
|
KUAL permissions expired!
Recently I got the KUAL certification expired problem on my Kindle PW2 6th gen (fw 5.12.2.2).
I downloaded the updates linked here https://www.mobileread.com/forums/sh...25#post4506225 and put them in the proper paths (kual v2 in the /document path, the updater in the main path and the new cert in /var/local/java/keystore/) but once unmounted the kindle nothing happened, no trigger to install the update. Can anyone please write the steps you should follow to complete the update? Maybe I'm forgetting something. Thanks in advance |
|
|
|
|
|
#2420 |
|
Junior Member
![]() Posts: 1
Karma: 10
Join Date: Oct 2025
Device: Kindle Touch (B011)
|
KUAL error messages
I spent half a day struggling with this, finally gave up and hoping someone can help. I have a Kindle Touch (B011 1408) running on 5.3.7.3 software. I've used the 1.16.N jailbreak for K5 successfully (got the message). Then went ahead and installed KUAL - the line in the library appeared immediately, however upon clicking I got the error message "This device is not authorized as test Kindle...". After a short search in the forum, I found an article recommending that the hotfix is installed, which I did, on top of it I pasted the KUAL Booklet v2.7.37 install, added the MRPI and ran the ;log mrpi (device restarted successfully).
However, the only difference is that now when touching KUAL I get "This item is not signed by an authorized developer. Please contact the developer". I can confirm that in the two hours since I've did the jailbreak I have not changed the username or updated the firmware (WIFI has been off the whole time). I am after installing a single .bin file, a bulgarian translation so my mother can use the menu - https://github.com/kaloyan-raev/kindle-nt-l10n-bg/ According to it's developer it can be placed in the root folder of a JB device and will install via Update buton, however it gets deleted every time after I eject the Kindle. It doesn't get deleted from the mrpackages folder, but when running the ;log mrpi it does not install the language pack (all the screens run and device restarts successfully, but the update is not applied). Any thoughts? |
|
|
|
|
|
#2421 | ||
|
Fanatic
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 514
Karma: 3579239
Join Date: Jul 2023
Device: Scribe 2022, OA2, PRS-350
|
Quote:
Quote:
|
||
|
|
|
|
|
#2422 |
|
Junior Member
![]() Posts: 4
Karma: 10
Join Date: Oct 2025
Device: kindle pw2
|
Issue solved, I forgot to put the bin file into the main path.
|
|
|
|
|
|
#2423 |
|
Enthusiast
![]() ![]() Posts: 37
Karma: 100
Join Date: Jul 2024
Device: Kindle Scribe
|
Team
I can`t make it work on Kindle DX, getting The title is noty signed by registered developer I have installed this MKK update 2x already Update-mkk-20250419-dx-B004_keystore-install.bin I`m probably on a wrong date since I have to run the setdate update everytime I loose power to the device. Would wrong date be an issue? Would you know where I can find older KUAL versions to try go back? ( it does work on K3G ) Last edited by vendo232; 11-11-2025 at 12:43 PM. |
|
|
|
|
|
#2424 | |
|
Connoisseur
![]() Posts: 50
Karma: 94
Join Date: Aug 2024
Device: K2 / K4 / PW5
|
Quote:
You'll need to use an old version of KUAL and the old MKK from the first post in the snapshots thread. Here's a version of KUAL that should work: https://storage.gra.cloud.ovh.net/v1...0250103.tar.xz The old MKK keystore expired in April 2025, so make sure to keep your Kindle's clock set to a date before then. |
|
|
|
|
|
|
#2425 | |
|
Enthusiast
![]() ![]() Posts: 37
Karma: 100
Join Date: Jul 2024
Device: Kindle Scribe
|
Quote:
Tried to update the new certs in this folder /var/local/java/keystore/developer.keystore but it did not work. As I have the usbNetwork setup I will try to use ChatGPT to create a bootup script to set the date for Jan 2025 so the old KUAL/MKK works and I don`t have to flash the setdate bin after every soft reset ( battery drain ) |
|
|
|
|
|
|
#2426 |
|
Enthusiast
![]() ![]() Posts: 37
Karma: 100
Join Date: Jul 2024
Device: Kindle Scribe
|
script to keep Kindle DX updated to 01/01/2025 on every boot!
I just used Grok and it did not help to create the script
Then moved to Claude.ai and vuala it gave me a script which actually works. The kindle DX keeps Jan 1 2025 after REBOOT! Fantastic! Code:
mntroot rw; cat > /mnt/us/extensions/set_date/set_date.sh << 'EOF' #!/bin/sh # Set date to January 1, 2025 12:00:00 date -s "010112002025" EOF chmod +x /mnt/us/extensions/set_date/set_date.sh; mkdir -p /mnt/us/launchpad; cat > /mnt/us/launchpad/set_date.ini << 'EOF' [Actions] B = !sh /mnt/us/extensions/set_date/set_date.sh EOF mntroot ro; reboot |
|
|
|
![]() |
| Tags |
| kindle touch, kindle touch hacks, kindlet, kual, launcher, launcher add-ons, paperwhite, sqlite, unified |
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Launcher icon for KUAL? | Aeris | Kindle Developer's Corner | 32 | 04-01-2021 08:57 PM |
| kite: kindle 3 application launcher | fbdev | Kindle Developer's Corner | 86 | 10-18-2017 11:19 AM |
| [KUAL]Kindle reflective screen loader | icantbebothered | Kindle Developer's Corner | 26 | 10-27-2013 10:08 AM |
| Kual shortcut for hidden image viewer (Kindle Touch & PW) | Aeris | Kindle Developer's Corner | 0 | 10-12-2013 06:09 AM |
| application launcher for kindle 3 (kite) | fbdev | Kindle Developer's Corner | 21 | 05-04-2012 07:02 PM |