Quantcast
Channel: MobileRead Forums - Kindle Developer's Corner
Viewing all 4430 articles
Browse latest View live

K4 Kindle 4 KUAL Issue

$
0
0
Hi everyone

My first post!

I've been given a Kindle 4, 2011 (silver paddle edition), running firmware 4.1.3.

I've factory reset the device, and ran jailbreak kindle-k4-jailbreak-1.8.N-r16252. That went through no issues at all, and I see the book.

On the below, I have read the instructions, ensuring files are to my specific device

Installed kindle-mkk-20141129-r16572. That seemed to install without any issues - I didn't see any errors.

Installed KUAL-v2.7.21-g3928582-20190724.

I see the KUAL book in my library, I run it, and get:

An error occured:Main class instantiation threw a RuntimeException. Please contact the developer.


Reading this can happen on the first run, I waited 30 secs and run again, got the same message. I've checked the folder structure of the kit, and don't see the extensions folder from what I've read.

I re-run kindle-mkk-20141129-r16572 just to make sure, didn't do much though.

At the moment, I've done another factory reset and left the kit as it is as wasn't too sure what else to try

Hope someone can help!

Hardware Open Book arduino ereader developer board

$
0
0
This is slightly off-topic, but I thought it might be of particular interest to Kindle hardware hackers.
Joey Castillo has released plans for an ereader Arduino extension board. For more information, see his Github website.

What time is it...??(my kindle doesn't remember)

$
0
0
Hi guys. 2018 Paperwhite with the koreader/kual thing I installed last December. Doesn't seem to remember the time, regardless of how often I set it.

Any thoughts...??

Thanks.

PW4 MY Kpw4's FW revert to 5.10.1.3 from 5.12.2

$
0
0
I don't know if it is a special case or not,but I think sharing it is beneficial.Maybe,someone will learn something from it.

I JailBreaked your KPW4 using Factory JailBreak (Factory FW) from here.
https://www.mobileread.com/forums/sh...&postcount=455

But Updata fireware to 5.12.2, my Kpw4 lost JB,the";log mrp" do not work.
Before Updata,I flashed the newest ‘hotfix’ (2019-Oct-11 23:23:06)using ';log mrpi'. After the operation, I found out that it is a wrong operation. the ';log mrpi' has't work. But I can still perform the correct operation.
I flashed the newest ‘hotfix’ (2019-Oct-11 23:23:06)using "Update Your Kindle" to my kpw4. it work,but ";log mrpi" still don't work.Finally I put Factory JailBreak (Factory FW) in my kpw4 and update。After reboot,My kpw4's FW revert to 5.10.1.3,and ';log mrpi' work.

PW3 Is there a netsurf binary for Kindle?

$
0
0
I would like to ask : is there anyone here have a copy of netsurf for kindle?

If not, will the binary (and the libraries) for armel debian work with the kindle PW3 ?

KT3 Data abort error when trying to boot into diagnostics mode

$
0
0
Hello, can anyone help me with this problem? I'm trying to jb my Kindle but when I try to boot into diagnostics mode it gives me a "data abort" error and boots normally. The Kindle (KT3) is new and works just fine. No other kind of hacks or modifications have been (nor even tried to) performed on it. I have searched the forum and on google, but I can't find anything. Here's the relevant part of the log:

Code:

U-Boot 2014.04 (Jan 24 2018 - 12:41:30)

CPU:  Freescale i.MX6SL rev1.4 at 792 MHz
CPU:  Temperature 28 C, calibration data: 0x5574e75f
Reset cause: POR
FRED::: EXTCSD177=0, 179=48FSL_SDHC: 0, FSL_SDHC: 1, FSL_SDHC: 2
Board: Heisenberg
Board Id: XXXXXXXXXXXXXXXX
S/N: G000K9XXXXXXXXXX
I2C:  ready
DRAM:  MR5=0x6,MR6=0x3 512 MiB
WARNING: Caches not enabled
MMC:  FRED::: EXTCSD177=0, 179=48FSL_SDHC: 0, FSL_SDHC: 1, FSL_SDHC: 2
*** Warning - bad CRC, using default environment

In:    serial
Out:  serial
Err:  serial
REBOOTMODE: 0
using default bootcmdNormal Boot
Hit any key to stop autoboot:  0
uboot > bootm 0xE41000
data abort
pc : [<9ffce81c>] lr : [<9ffc46b4>]
sp : 9fcb9b20  ip : 9fcba259 fp : 9fcba100
r10: 9fcba234  r9 : 9fcb9cdc r8 : 00000001
r7 : 00000000  r6 : 0000070f r5 : 00e41000  r4 : 9ffef3f8
r3 : 00000000  r2 : 00000010 r1 : 00000000  r0 : 00e41000
Flags: nZCv  IRQs off  FIQs off  Mode SVC_32
Resetting CPU ...

resetting ...

My Kindle PW1 stop working

$
0
0
Hi,
My Kindle PW1 stop working. So I used Putty through ttl to start it.



It shows the Id/SN are missing. It can't detect the board.

So it struck at using default environment. And it drains battery very quickly.

What should I do now? Try to access fast boot or overwrite firmware?

Thanks,

Monitoring battery charge

$
0
0
I feel my Kindle works less and less on a full charge, but maybe I just read more.
Anyway to verify that I've created a simple script to monitor the battery charge and screensaver events.

Code:

#!/bin/bash

VERSION='1.0'
LOGFILE='/mnt/base-us/battery.log'
SOURCES=$'com.lab126.powerd\ncom.lab126.hal'

touch $LOGFILE

echo [`date`] Starting $0 v$VERSION >> $LOGFILE

echo "$SOURCES" | lipc-wait-event -m -l battLevelChanged,goingToScreenSaver,outOfScreenSaver,charging,notCharging | while read event; do
        echo [`date`] $event >> $LOGFILE
        done

It uses lipc-wait-event so should have no visible influence on the battery live.

Example log print:
Code:

[Fri Oct 18 11:00:24 EEST 2019] Starting /mnt/us/extensions/battstat/bin/battstat.sh v1.0
[Fri Oct 18 11:01:28 EEST 2019] Event Source: com.lab126.powerd
[Fri Oct 18 11:01:28 EEST 2019] Event Source: com.lab126.hal
[Fri Oct 18 11:01:28 EEST 2019] Waiting for events...
[Fri Oct 18 11:01:28 EEST 2019] com.lab126.powerd charging
[Fri Oct 18 11:03:24 EEST 2019] com.lab126.powerd battLevelChanged 98
[Fri Oct 18 11:08:28 EEST 2019] com.lab126.powerd battLevelChanged 99
[Fri Oct 18 11:14:58 EEST 2019] com.lab126.powerd battLevelChanged 100
[Fri Oct 18 11:21:22 EEST 2019] com.lab126.powerd goingToScreenSaver 3

I'm attaching also KUAL extension to enable the script. It'll run until the restart, creates the log in battery.log file in the root folder.

Attached Files
File Type: zip battstat.zip (1.1 KB)
File Type: zip battstat_1.1.zip (1.2 KB)

Is jailbreaking really all that? (User experiences)

$
0
0
I know there are lots of jailbreaking threads, and I'm not looking for ways to jailbreak my Kindles (it's not possible yet with mine, even if I wanted to).

What I'm looking for is experiences with jailbroken Kindles. Why did you want to jailbreak? Is it only for the screensavers? And now that you've jailbroken your Kindle is it really what you'd hoped for?

And is it easy to maintain the jailbreak? Or do you regret is because it's a lot of hassle?

Sorry if this has already been asked. I tried to read almost all the jailbreak threads, but most concentrate on the technical stuff, and that's not what I am looking for.

I just want to know if it's really worth it, and if people regret jailbreaking their device because it's not what they'd hoped. Or it's too difficult to maintain the jailbreak. Or if they kind of really wanted the new update (because of features?), but can't because it's now jailbroken.

I have this voice in the back of my head saying I should jailbreak once it's possible, but on the other hand, it it really worth it? If it's only for the screensavers, I can live without those.

So what are your experiences with jailbroken devices?

PW [KUAL] Yet another clock extension

$
0
0
I really envied the PW2+ feature of displaying current time while reading.
There was this extension called showtime by @Hanspeter https://www.mobileread.com/forums/sh...d.php?t=282590 but it had two flaws:
- it was using default eips font for printing the time
- it was not updating on minute-change, just when the page is turned.
And as I've recently discovered (masochistic?) joy of writing bash scripts here's another extension to do so.

It should have no influence on the battery, as the main process uses lipc-event-wait, and child processes are being suspended when no clock display is needed.

It has still few bugs that should be corrected soon:
- clock show once when the script is started (it disappears after titlebar refresh)
- sometimes clock persists after exiting a book (it also disappears after screen refresh)
- in rare occasions clock is not displayed properly (some digits are missing)

The script currently will work for PW1 only, but should be easily portable to KT (resizing digits+finding new XPOS/YPOS values).

Attached Thumbnails
Click image for larger version

Name:	screenshot_2019_10_21T13_39_51+0200.png
Views:	N/A
Size:	39.1 KB
ID:	174420  
Attached Files
File Type: zip yaclock_v0.5.zip (6.5 KB)

Kindle 4 Bricked and stuck

$
0
0
Hello! I'm im very new to the Kindle hacking scene and really messed up:help::help:. I put my Kindle 4NT into developer mode and now its stuck. The 5 way pad wont move anything, the power button wont do anything and the light is the only thing that alive. I thought about letting it die then trying but IDK about that one. I really wanna just get some nice screen savers and get some cool stuff. IF you can Help that is great! I wont be here to much but you can contact me by my number - 7864429374. text only please thanks.:thanks:

KT3 5.9.2.0.1 advice

$
0
0
hey all,

just a request for some advice. I'm a bit of a cheapskate, I don't want to pay for sponsor offers removal if I can avoid it. I have a Kindle Basic KT3 with the firmware 5.9.2.0.1. If I recall correctly it has never been online, although I might be wrong. I made the "update.bin.tmp.partial" dummy folder in the kindle's visible partition's root directory. If I go online with it to browse wikipedia, will I get the sponsor's offers? Is there a way to avoid them without paying? I like the default screensavers it has now (just some images showing off the E-ink display's quality), and my previous kindle had some adverts there which I'd rather not have.

I don't wish to jailbreak it, the hardware jailbreak seems like an awfully risky. Should I just keep it offline forever?

thanks

PW Bootlooping Kindle Paperwhite possible repair?

$
0
0
Hi,
I've come to inherit a Kindle PW1 which is bootlooping on the tree screen. I tried all the basic ways to get past it with no success so connected it to serial to have a look. It appears to be bootlooping because of this error:

Code:

EXT3-fs error (device mmcblk0p3): ext3_add_entry: bad entry in directory #2: rec                                                      _len % 4 != 0 - offset=0, inode=3735924190, rec_len=21025, name_len=82
When attempting to access the kindle's fat32 partition on the computer through recovery or diag it appears to have no filesystem as the computer asks to format the drive before using. When in recovery however, Export FAT Partition causes an immediate YKNR screen.

I was going to try flashing everything again via fastboot but am unable to get the factory images from the original website that gets used here and while I can download the update officially from amazon, I am unsure if I can use that to do what I want to do.

If anyone has any ideas where I can go from here that would be great!
Thanks

SSH and USBNetworking

$
0
0
IM BACK! my problem with it being bricked had been solved. But now that i have gotten to a beginners intermediate, i wanted to try SSH and usbnetworking. I have kite installed and it works but when i follow the docs here: https://wiki.mobileread.com/wiki/Kin...USB_Networking
and i get stuck on :"Find the Local Area Connection # with small text "Unidentified Network, RNDIS/Ethernet Gadget" I dont see that. if anyone could be so kind to help me and also give me some apps to download for kite that would be great.:thanks::thanks:

Stuck on Diags and cant get out? HELPER!

$
0
0
THIS WORKED FOR ME BUT I DON'T KNOW IF WILL WORK FOR YOU. DO NOT HOLD ME LIABLE TO ANY DAMAGES THAT HAPPENS TO YOU :eek::2thumbsup




If you are stuck on the diags screen after trying to click exit, don't call Amazon unless your trying to get coupons off of them. Instead use MFGTool.exe to set your kindle back to home screen. It may or may not tell you to charge it b/c even if its frozen and you charge it it doesn't work, IDK why :chinscratch::blink:. But after that, you should be able to go read! :2thumbsup
MFGTool file linked below.

Attached Files
File Type: zip KindleSelectBoot.zip (508.5 KB)

PW3 PW3 5.12.2 Woes :(

$
0
0
My Kindle updated and nothing I have tried has worked. Did it undo the jailbreak forever? Is there nothing I can do? Is it time to buy a Kobo?

Kindle 10 -- JB Available?

$
0
0
Couldn't figure out where to find the answer,

Amazon now has a Kindle whose description reads like the PaperWhite description used to read. They labeled it as 'Kindle 10" in the specs section of the product description. The new PW ($30 or so more) is waterproof, more storage, yada, yada, yada. I don't need all that stuff.

I would prefer to jailbreak it so my actual question is, "Is there a JailBreak available for this new device?"

Thanks,
TTB

How to write a jailbreak (Process, Quick Start, First Steps, etc)?

$
0
0
Hi,

I have a general understanding what a jailbreak actually is - as far as I can see it requires to find a vulnerability in a "binary" (or even better - in the system) that anyone can exploit (if he knows how). I also have some knowledge and experience in reverse engineering.

So, the main question is - are there any guides on MobileRead (or anywhere outside it) on how to start with writing kindle's jailbreak and where to look at? Could someone give any directions where to start? If I would be able to find a way to bypass a security in a firmware, how to integrate this knowledge with existing infrastructure (e.g. what should I do to make it possible to install KUAL, etc)?

And I know, this process requires a tremendous amount of time investment :builder:

Can't jailbreak PW3 Paperwhite 3 2015 what am I doing wrong?

$
0
0
Paperwhite 3 2015 what am I doing wrong?

Following the wiki https://wiki.mobileread.com/wiki/5_x_Jailbreak

Original Kindle firmware installed = 5.8.1

Step 1: Download PW3 factory_PW3_5.9.6.1_initial firmware
Step 2: # Home -> Menu -> Settings -> Menu -> Update Your Kindle # Confirm # Wait
Step 3: Transfer main-htmlviewer.tar.gz to main directory
Step 4: In search type ;installHtml
Step 5: Transfer Update_jailbreak_hotfix_1.16.N_install.bin
Step 6: # Home -> Menu -> Settings -> Menu -> Update Your Kindle # Confirm # Wait

Upon restart I cannot downgrade the firmware (I want to go back to 5.8.1)
It says Update Error An invalid update file has been loaded onto your device.

I cannot install KUAL-v2.7.21-g3928582-20190724 -> it never shows up in MY LIBRARY

What did I do wrong?
Thanks in advance for an helpful tips

Can't jailbreak PW3 Paperwhite 3 2015 what am I doing wrong?

$
0
0
Paperwhite 3 2015 what am I doing wrong?

Following the wiki https://wiki.mobileread.com/wiki/5_x_Jailbreak

Original Kindle firmware installed = 5.8.1

Step 1: Download PW3 factory_PW3_5.9.6.1_initial firmware
Step 2: # Home -> Menu -> Settings -> Menu -> Update Your Kindle # Confirm # Wait
Step 3: Transfer main-htmlviewer.tar.gz to main directory
Step 4: In search type ;installHtml
Step 5: Transfer Update_jailbreak_hotfix_1.16.N_install.bin
Step 6: # Home -> Menu -> Settings -> Menu -> Update Your Kindle # Confirm # Wait

Upon restart I cannot downgrade the firmware (I want to go back to 5.8.1)
It says Update Error An invalid update file has been loaded onto your device.

I cannot install KUAL-v2.7.21-g3928582-20190724 -> it never shows up in MY LIBRARY

What did I do wrong?
Thanks in advance for an helpful tips
Viewing all 4430 articles
Browse latest View live