|
|
Internal storage failureThat rescue procedure had led 3 months later to a sdcard failure the very same way the intern had failed. Only attempt to use it with inexpensive sdcard that you can afford to loose Some early Fuze+ have suffered from an internal storage defect making them partly or completely unusable. While the internal storage cannot be recovered (as far as we know) , the following procedure will allow you to go on using rockbox on such device by launching it from a microSD card. It consists mostly in two steps:
Modify the i2c eeprom's firmware on your deviceModifying the EEPROM is the tricky step. Indeed this this EEPROM is easily accessible from the i2c bus of the device but it is write protected by default. However the write protected pin is not heavily grounded which makes it possible to disable the protection on a temporary fashion. So the procedure will look like this:
Format your mircoSD card to have both a bootloader and the usual partitionYou need to create 2 partitions on the microSD card:
Linux:You can use gparted to created those two partitions. The bootloader partition can be of any filesystem's type as we will reset it afterward (although setting some different filesystem from FAT32 can help you to identify it on the card.) Then from a console as root launch fdisk on the microSD device:fdisk /dev/sdXwhere sdX is the name of the MicroSD device (typically X is to be remplace by a letter, sdc for instance) Be sure to identify clearly that letter as a mistake can make some of your other partition unusable. Type p to list all partition and identify the number of the future bootloader partition (it should be the one having the lowest number of blocks). Then enter t , then the number of the bootloader partition, then 53 as OnTrack DM6 Aux3 file-system. Finally enter w to write modification to the device.
Compile or get a rockbox bootloader and directory modified to run from the microSDIf you already know how to compile you can apply this patch and compile your own bootloader/directory: g#567 Otherwise you can get a precompiled bootloader here and a precompiled directory here Note that the precompiled bootloader/directory might be old and/or buggy and thus is unsupported.Copy the bootloader on the bootloader filesystem.Linux:You can copy the bootloader to microSD partition with the following commanddd if=firmware.sb bs=512 seek=4 of=/dev/sdX$where in sdX$, X is the same letter as above and $ the number of the bootloader partition on the microSD It isn't very clear if this step is necessary, but if you still cannot start the bootloader you can add one last command: dd if=/dev/zero bs=512 count=4 of=/dev/sdX$where sdX$ stand as above -- JeanLouisBiasini - 16 Aug 2013 r6 - 02 Apr 2021 - 20:46:07 - UnknownUser
Copyright © by the contributing authors.
|