summaryrefslogtreecommitdiff
path: root/bootloader
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader')
-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 {