summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/iriver_flash.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/apps/plugins/iriver_flash.c b/apps/plugins/iriver_flash.c
index 1cae1767a9..8cbf75ebd8 100644
--- a/apps/plugins/iriver_flash.c
+++ b/apps/plugins/iriver_flash.c
@@ -351,11 +351,12 @@ bool detect_flashed_rockbox(void)
351 return true; 351 return true;
352} 352}
353 353
354unsigned long valid_bootloaders[][2] = 354unsigned long valid_bootloaders[][2] = {
355 { 355 /* Size-8 CRC32 */
356 { 62332, 0x77395351 }, 356 { 62332, 0x77395351 }, /* Pre-release v7 */
357 { 0, 0 } 357 { 63340, 0xc41857b6 }, /* Pre-release v7, fixed crash unless firmware found. */
358 }; 358 { 0, 0 }
359};
359 360
360 361
361bool detect_valid_bootloader(const unsigned char *addr, int len) 362bool detect_valid_bootloader(const unsigned char *addr, int len)