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: 37,228
Karma: 148321048
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 Today, 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
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 10:24 AM.


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