summaryrefslogtreecommitdiff
path: root/apps/plugins/iriver_flash.c
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-08-11 19:59:16 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-08-11 19:59:16 +0000
commit22860a910a7ddbb9b811fce4cf971e097c8e6eac (patch)
tree022ce2ca2e0c09561d60295fe1c9c2df1f3e3c62 /apps/plugins/iriver_flash.c
parent3491147fd0be9684261b1cd8e8e9c909a8fb26ce (diff)
downloadrockbox-22860a910a7ddbb9b811fce4cf971e097c8e6eac.tar.gz
rockbox-22860a910a7ddbb9b811fce4cf971e097c8e6eac.zip
Fixed hold switch detection from bootloader when rockbox has been
flashed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10533 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/iriver_flash.c')
-rw-r--r--apps/plugins/iriver_flash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/iriver_flash.c b/apps/plugins/iriver_flash.c
index 40c9a2979b..f919a0d25c 100644
--- a/apps/plugins/iriver_flash.c
+++ b/apps/plugins/iriver_flash.c
@@ -404,7 +404,7 @@ int flash_bootloader(const char *filename)
404 rb->snprintf(buf, sizeof buf, "crc32 = 0x%08x", crc32); 404 rb->snprintf(buf, sizeof buf, "crc32 = 0x%08x", crc32);
405 rb->splash(HZ*10, true, buf); 405 rb->splash(HZ*10, true, buf);
406#else 406#else
407 if (crc32 != 0xa930906d) 407 if (crc32 != 0x77395351)
408 { 408 {
409 rb->splash(HZ*3, true, "Untested bootloader"); 409 rb->splash(HZ*3, true, "Untested bootloader");
410 return -2; 410 return -2;