summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-11-09 08:37:14 +0000
committerDave Chapman <dave@dchapman.com>2007-11-09 08:37:14 +0000
commiteaed78555b2168e6471a8d03c0d2814f058e4197 (patch)
tree513190f911ffcf372ca8ded549da59557a5af5b3
parentb9dba4f12817f4d1d146def093520aeee78a1c7a (diff)
downloadrockbox-eaed78555b2168e6471a8d03c0d2814f058e4197.tar.gz
rockbox-eaed78555b2168e6471a8d03c0d2814f058e4197.zip
Swap two messages which were the wrong way round. Thanks to Barry Wardell for spotting.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15549 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--bootloader/main-e200r-installer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader/main-e200r-installer.c b/bootloader/main-e200r-installer.c
index 518f1db87f..b128a3445a 100644
--- a/bootloader/main-e200r-installer.c
+++ b/bootloader/main-e200r-installer.c
@@ -150,7 +150,7 @@ void* main(void)
150 if (crc32 == PATCHED_CRC32) 150 if (crc32 == PATCHED_CRC32)
151 { 151 {
152 /* Bootloader already patched */ 152 /* Bootloader already patched */
153 printf("Firmware unlocked"); 153 printf("Already unlocked");
154 printf("Proceed to Step 2"); 154 printf("Proceed to Step 2");
155 } else if ((crc32 == KNOWN_CRC32) && 155 } else if ((crc32 == KNOWN_CRC32) &&
156 !memcmp(&sector[HACK_OFFSET], knownBytes, 156 !memcmp(&sector[HACK_OFFSET], knownBytes,
@@ -162,7 +162,7 @@ void* main(void)
162 ata_write_sectors(IF_MV2(0,) 162 ata_write_sectors(IF_MV2(0,)
163 pinfo->start + START_SECTOR_OF_ROM + ROMSECTOR_TO_HACK, 163 pinfo->start + START_SECTOR_OF_ROM + ROMSECTOR_TO_HACK,
164 1 , sector); 164 1 , sector);
165 printf("Already unlocked"); 165 printf("Firmware unlocked");
166 printf("Proceed to Step 2"); 166 printf("Proceed to Step 2");
167 } else if (is_e200(crc32)) 167 } else if (is_e200(crc32))
168 { 168 {