Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Kobo Reader > Kobo Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 05-06-2023, 02:33 PM   #316
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 39,814
Karma: 154147706
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by levoz85 View Post
ciao avrei bisogno di un immagine per il mio kobo glo.
grazie mille
Quote:
Hi I need an image for my kobo glo.
A thousand thanks
Please post requests for firmware images in the correct thread and not in multiple threads.

For your Glo N613, post in the Kobo Glo: Need SD card image thread.
DNSB is offline   Reply With Quote
Old 02-20-2024, 12:24 AM   #317
Henk Poley
Junior Member
Henk Poley began at the beginning.
 
Posts: 4
Karma: 10
Join Date: Feb 2024
Device: Kobo Aura HD ̵&̵ ̵L̵i̵b̵r̵a̵ &
After overwriting an SD card with the ancient OS image, and resetting it to 'factory settings', I had issues connection to WiFi, or getting the macOS Kobo app to update the 'firm'ware.

This worked:

Again wrote the image to SD.

Downloaded Aura HD firmware update here: https://pgaskin.net/KoboStuff/kobofirmware.html

Extracted the files to /Volumes/KOBOeReader/.kobo, according to this thread:
https://www.mobileread.com/forums/sh...d.php?t=145177

The next boot sequence will looked messed up. A kind of ghostly sideways and repeated "don't turn off" (🚫+⏼) with the same repetition of three dots circling.

Your Kobo still updates to the latest OS, even though the update developer couldn't get the screen to work properly 😅.

Now you can reset your Kobo Aura HD, it will connect to WiFi, and will you can do the rest as expected.
Henk Poley is offline   Reply With Quote
Old 02-20-2024, 04:31 AM   #318
Henk Poley
Junior Member
Henk Poley began at the beginning.
 
Posts: 4
Karma: 10
Join Date: Feb 2024
Device: Kobo Aura HD ̵&̵ ̵L̵i̵b̵r̵a̵ &
Ah, the Kobo Aura HD PCB is 'E606C0'.

So it wouldn't surprise me if you had to rename /Volumes/KOBOeReader/.kobo/upgrade/mx50-ntx/uImage-E606C0 to /Volumes/KOBOeReader/.kobo/upgrade/mx50-ntx/uImage and move the original out of the way, to make the update boot image look nice and clean.
Henk Poley is offline   Reply With Quote
Old 02-20-2024, 04:37 AM   #319
Henk Poley
Junior Member
Henk Poley began at the beginning.
 
Posts: 4
Karma: 10
Join Date: Feb 2024
Device: Kobo Aura HD ̵&̵ ̵L̵i̵b̵r̵a̵ &
Ah, and you need to do the recent firmware update before a 'factory reset', because of the May 25th 2023 mandatory Kobo update (I think they added TLS 1.3 support or something, to talk with their webservers). Which would make it impossible to finish the enrolment wizard on the e-Reader with older firmware.

E.g. this Kobo FAQ: I got a message from Kobo about updates to my device. What should I do?

Last edited by Henk Poley; 02-20-2024 at 04:41 AM.
Henk Poley is offline   Reply With Quote
Old 06-30-2024, 07:24 AM   #320
Peter_Cordes
Junior Member
Peter_Cordes began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Jun 2024
Device: Kobo N249 Clara HD
Linux firmware image instructions

Since nobody's mentioned this, if you're using a Linux desktop it's very simple: write the firmware .img to the raw device file for your MicroSD card. e.g. with
sudo dd bs=64k if=foo.img of=/dev/XYZ
or
cat foo.img > /dev/XYZ

Both require root, dd can be used with sudo since dd opens the output file. cat with a redirect can't, since the user shell would be trying to do the redirect before sudo runs.

I used this command to extract the zip straight to the microSD block device. (In a root shell from sudo -s, although I could have just used sudo on the dd part of this pipeline)


7z x -so Kobo_N249_Clara_HD_4_38_21908.zip | dd status=progress bs=64k of=/dev/sdXYZ


where /dev/sdXYZ was actually /dev/sdf, my microSD card in a USB adapter. Using a placeholder device filename to protect from overwriting the wrong device with a copy/paste. Make doubly sure you have the right device (check lsblk, and/or dmesg to make sure it's the USB device you just inserted, and run mount to make sure it didn't get automatically mounted).

I only used dd to get a progress indicator (which doesn't include the kernel's write buffers, so it will start fast then slow down as the buffer fills and it has to wait for the actual hardware. A tool like vmstat or iostat -x 5 or dool -D nvme0n1,sda,sdb,sdc,...,sdf 5 will show you actual device read/write MB/s.

I could have just redirected stdout of 7-zip into the device file. (The -so option tells it to extract to standard output)

The image is a full-disk image with a partition table, thus we write it to the whole device, not to a partition. (And not as a regular file into an existing filesystem.) In Windows you need special software for that; in Unix (macOS and Linux) the raw device is accessible as a file in /dev.

You can then use gparted /dev/sdf and use the GUI to resize the FAT32 partition to extend out to the end of the device so you can use all the space. Or apparently factory-reset will do that, too.

update: on my Kobo Clara HD, it locked up very soon after doing the initial setup with the FAT32 partition resized to fill the 32GiB microSD. (With the same failure screen as when the original microSD died).

Re-imaging the original 8GiB image onto it, it seems to be working. Using factory reset from the menu didn't grow the partition to fill the card like some users reported it would, maybe that's only a thing with the firmware for some other models. (The original card that came with the device is 16GiB. I don't know how it was partitioned before it died. Possibly it only used the first 8, as over-provisioning to make the wear-leveling in the microSD controller more efficient, or maybe the firmware image I was sent is different from what was originally on this device. For library books, we don't need a lot of storage so I'm just leaving it at 8G, not trying to grow the partition up to 16. It seems to be working, not locking up at the point it did before.)

----

Feel free to copy/paste this post into a section of one of the main posts for the benefit of Linux users.

(reposted with edits since there seems to be a deadline for editing my previous post? And I don't see a delete button on it.)
Peter_Cordes is offline   Reply With Quote
Old 07-06-2024, 06:52 AM   #321
Awkgnu
Junior Member
Awkgnu began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Jun 2024
Location: UK
Device: Kobo Touch B, Kindle paperwhite 2022
Post How I did it On My Kobo touch (Using MAC)

Still refer to main guide
1. POWER KOBO OFF NOT SLEEP MODE take back off, I used a knife to prise the back off between the crack
2. You see the sd slot? Push it left until it clicks and pop up, Take out the SD card
3. Plug it into your mac, also plug in the SD card you want to image I tried 32 gig but it didn't work so I settled with 16.
4. Use Balena Etcher - https://etcher.balena.io/ to clone the kobo 2gig to the new 16 gig one.
5. To do the partitions, disk utility was playing up so i used Ipartition - https://download.cnet.com/ipartition...8_4-50841.html activated with this - https://coriolis-systems.com/downloads/iPartition.png This Activation Png was given by the vendor as stated here - https://formulae.brew.sh/cask/ipartition
6. Use ipartition to drag the KOBOeReader Partiotion into all but about 10mb of unallocated space, press go
7. It should do some stuff and then say finished or somthing., eject it from your mac and take it out of the adaptor
8. Put it in the kobo, press the metal down and to your rightand it should stay down, Try turning it on, if the light at the top just stays blue, somthing has gone wrong, try repeating the process, and if that dosent work try an alternate sd card. If all else Fails I'm Afraid you will have to do your own Troubleshooting. OR you can just put the OG SD card back.
9. Enjoy your free space!

Disclaimer, use these links at your own risk, they are just the software that worked for me.

Also a BIG to the maker of this guide! Now i can read manga properly!
Awkgnu is offline   Reply With Quote
Old 07-17-2024, 04:32 PM   #322
LorPiro
Member
LorPiro began at the beginning.
 
Posts: 18
Karma: 10
Join Date: Jul 2024
Device: kobo glo
Guys just one quick question.
What happens if I have wrongly formatted the SD card?
LorPiro is offline   Reply With Quote
Old 07-17-2024, 09:07 PM   #323
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 39,814
Karma: 154147706
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by LorPiro View Post
Guys just one quick question.
What happens if I have wrongly formatted the SD card?
It shouldn't matter. The USB image writer utility writes the format of the image to the card.

OTOH, I seriously recommend using a new µSD card to write the image to. µSD cards seem to have a lot shorter lifespans than expected.
DNSB is offline   Reply With Quote
Old 07-18-2024, 07:00 AM   #324
LorPiro
Member
LorPiro began at the beginning.
 
Posts: 18
Karma: 10
Join Date: Jul 2024
Device: kobo glo
Hello everyone,
I recently found an old KOBO GLO in my house and I wanted to start re-using it. After some troubles I managed to extend the memory (as seen in another thread) by using a new uSD card. Everything seems to work nice, the kobo starts up and I can see the WELCOME page. The problem is that I can't go further. When I try to connect the kobo via WI-FI it give me some errors, the device connects and then trow me back to the start page (?). If I try to set it up using a cable it seems to not be able to reach my computer.
Any thoughts?
Hope you'll help me
LorPiro is offline   Reply With Quote
Old 07-19-2024, 10:23 AM   #325
LorPiro
Member
LorPiro began at the beginning.
 
Posts: 18
Karma: 10
Join Date: Jul 2024
Device: kobo glo
Adding ebooks from uSD

Ok guys I managed to fix my kobo glo.
I have another question, is it possible to insert an ebook file directly into the main SD card?

from file manager I see these 3 folder (in the attached photo)

do you think it's possible to do it? where should I put the files?
Attached Thumbnails
Click image for larger version

Name:	Cattura.PNG
Views:	484
Size:	5.2 KB
ID:	209656  
LorPiro is offline   Reply With Quote
Old 07-19-2024, 12:20 PM   #326
PeterT
Grand Sorcerer
PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.
 
PeterT's Avatar
 
Posts: 12,643
Karma: 74500000
Join Date: Nov 2007
Location: Toronto
Device: Libra H2O, Libra Colour
Please don't multi post!

And content can go almost anywhere. Create your own folder called (for instance) books and copy content there

Sent from my Pixel 7a using Tapatalk
PeterT is offline   Reply With Quote
Old 09-23-2024, 08:05 PM   #327
piledrivegames
Junior Member
piledrivegames began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Sep 2024
Device: kobo clara hd
2024 update

Hey just wanted to say this tutorial is still working in 2024!

Thanks a lot, I was able to save my wife's Kobo, and she is very happy with me
piledrivegames is offline   Reply With Quote
Old Today, 07:14 AM   #328
cowchair
Junior Member
cowchair began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Oct 2024
Device: Kobo Libra 2 N418
Thanks for the guide, it helped me unbrick my Kobo Libra 2 N418 I'll leave some notes here for future googlers.

- My original issue was that when I connected to a new wifi network, it seems to have tried to download a new update and then bricked itself (I had sideloaded NickelMenu a year or so ago and forgotten all about it). The white light at the front would flash/blink and I'd get a white screen. If I tried to reset the Libra 2, maybe it would go to a white screen with three dots, but it would always revert to the blinking light and white screen.

- Opening the case was easy with a very thin tool. I attach photos of the markings on the main PCB of my unit, the markings on the battery, and the markings on the little power button break-out board.

- My MicroSD card was glued in with a very thin (and very clear!) coating. I got it out by grabbing the sides of the chip with tweezers and wiggling it out (photo attached).

- The MicroSD card from my unit was completely corrupted, it refused to delete partitions and format no matter what software I used. A full replacement was needed. I prepared the new MicroSD card by deleting all partitions from it and adding a new lettered partition (with MiniTool Partition Wizard), and then formatting that new lettered partition with the SD Association's SD Card Formatter tool. I used Balena Etcher Portable to flash the image onto the card.

- I flashed the first revision image, but this didn't work. After the unit booted up and got to the language selection screen, it immediately turned off with a screen telling me that it needed to be charged. Since DNSB's message said that one of the changes between revisions was to the battery management chip, I reflashed with the Revision E image and that works fine.

- The unit's serial number no longer matches mine in the 'About' section. I don't know where to change this; I tried changing it in the .kobo/version file, but the change doesn't stick.

- The firmware wrongly announced that it was up-to-date. I updated it manually by extracting the latest firmware .zip to the .kobo folder and restarting the unit.
Attached Thumbnails
Click image for larger version

Name:	mainboard_libra2n418.jpg
Views:	2
Size:	97.2 KB
ID:	211349   Click image for larger version

Name:	battery_libra2n418.jpg
Views:	2
Size:	100.3 KB
ID:	211350   Click image for larger version

Name:	onoff_libra2n418.jpg
Views:	2
Size:	22.4 KB
ID:	211351   Click image for larger version

Name:	microsd_removal.jpg
Views:	2
Size:	113.3 KB
ID:	211352  

Last edited by cowchair; Today at 07:18 AM.
cowchair is offline   Reply With Quote
Reply

Tags
glo, glo memory upgrade mod, hack, increase, kobo, sdcard


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Vox Kobo Vox memory card image - Fix tablet upgrade error and more pcampbell Kobo Tablets 76 05-05-2020 12:11 PM
iOS Devices [mod: might be] Banned in Europe [mod: Germany] CyGuy News 27 12-13-2011 07:47 AM


All times are GMT -4. The time now is 08:12 AM.


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