diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2006-08-11 19:59:16 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2006-08-11 19:59:16 +0000 |
| commit | 22860a910a7ddbb9b811fce4cf971e097c8e6eac (patch) | |
| tree | 022ce2ca2e0c09561d60295fe1c9c2df1f3e3c62 /apps/plugins | |
| parent | 3491147fd0be9684261b1cd8e8e9c909a8fb26ce (diff) | |
| download | rockbox-22860a910a7ddbb9b811fce4cf971e097c8e6eac.zip rockbox-22860a910a7ddbb9b811fce4cf971e097c8e6eac.tar.gz rockbox-22860a910a7ddbb9b811fce4cf971e097c8e6eac.tar.bz2 rockbox-22860a910a7ddbb9b811fce4cf971e097c8e6eac.tar.xz | |
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')
| -rw-r--r-- | apps/plugins/iriver_flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/iriver_flash.c b/apps/plugins/iriver_flash.c index 40c9a29..f919a0d 100644 --- a/apps/plugins/iriver_flash.c +++ b/apps/plugins/iriver_flash.c @@ -404,7 +404,7 @@ int flash_bootloader(const char *filename) rb->snprintf(buf, sizeof buf, "crc32 = 0x%08x", crc32); rb->splash(HZ*10, true, buf); #else - if (crc32 != 0xa930906d) + if (crc32 != 0x77395351) { rb->splash(HZ*3, true, "Untested bootloader"); return -2; |