diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-10-14 11:16:20 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-10-14 11:16:20 +0000 |
| commit | d777a367ada03574d5f1dbc0428d828cf0f582b6 (patch) | |
| tree | 7b3c12e94c74d7558f92e67ceaa4fd8734537582 /bootloader | |
| parent | e329a45add38ffeaee8354ffc500adb1e588cb83 (diff) | |
| download | rockbox-d777a367ada03574d5f1dbc0428d828cf0f582b6.zip rockbox-d777a367ada03574d5f1dbc0428d828cf0f582b6.tar.gz rockbox-d777a367ada03574d5f1dbc0428d828cf0f582b6.tar.bz2 rockbox-d777a367ada03574d5f1dbc0428d828cf0f582b6.tar.xz | |
clean up the e200r installer app to make it more user friendly
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15104 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader')
| -rw-r--r-- | bootloader/main-e200r-installer.c | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/bootloader/main-e200r-installer.c b/bootloader/main-e200r-installer.c index 9b977ca..c1162c9 100644 --- a/bootloader/main-e200r-installer.c +++ b/bootloader/main-e200r-installer.c @@ -35,6 +35,7 @@ #include <string.h> #include "i2c.h" #include "backlight-target.h" +#include "power.h" /* Bootloader version */ char version[] = APPSVERSION; @@ -75,6 +76,7 @@ void* main(void) printf("Rockbox e200R installer"); printf("Version: %s", version); printf(MODEL_NAME); + printf(""); i=ata_init(); disk_init(IF_MV(0)); @@ -84,18 +86,21 @@ void* main(void) error(EDISK,num_partitions); } pinfo = disk_partinfo(1); +#if 0 /* not needed in release builds */ printf("--- Partition info ---"); printf("start: %x", pinfo->start); printf("size: %x", pinfo->size); printf("type: %x", pinfo->type); printf("reading: %x", (START_SECTOR_OF_ROM + ROMSECTOR_TO_HACK)*512); +#endif ata_read_sectors(IF_MV2(0,) pinfo->start + START_SECTOR_OF_ROM + ROMSECTOR_TO_HACK, 1 , sector); crc32 = chksum_crc32 (sector, 512); +#if 0 /* not needed in release builds */ printf("--- Hack Status ---"); printf("Sector checksum: %x", crc32); - +#endif if ((crc32 == KNOWN_CRC32) && !memcmp(§or[HACK_OFFSET], knownBytes, sizeof(knownBytes)/sizeof(*knownBytes))) @@ -106,14 +111,23 @@ void* main(void) ata_write_sectors(IF_MV2(0,) pinfo->start + START_SECTOR_OF_ROM + ROMSECTOR_TO_HACK, 1 , sector); - printf("Firmware Hacked"); + printf("Firmware Unlocked"); printf("Proceed to Step 2"); } else - printf("Unknown bootloader... aborted"); + { + printf("Unknown bootloader"); + printf("Rockbox installer cannot"); + printf("continue"); + } GPIOG_OUTPUT_VAL &=~0x80; - - while(1); + printf(""); + if (button_hold()) + printf("Release Hold and"); + printf("Press any key to shutdown"); + while(button_read_device() == BUTTON_NONE) + ; + power_off(); return NULL; } |