summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-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 1cae176..8cbf75e 100644
--- a/apps/plugins/iriver_flash.c
+++ b/apps/plugins/iriver_flash.c
@@ -351,11 +351,12 @@ bool detect_flashed_rockbox(void)
return true;
}
-unsigned long valid_bootloaders[][2] =
- {
- { 62332, 0x77395351 },
- { 0, 0 }
- };
+unsigned long valid_bootloaders[][2] = {
+ /* Size-8 CRC32 */
+ { 62332, 0x77395351 }, /* Pre-release v7 */
+ { 63340, 0xc41857b6 }, /* Pre-release v7, fixed crash unless firmware found. */
+ { 0, 0 }
+};
bool detect_valid_bootloader(const unsigned char *addr, int len)