diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-04-20 06:48:17 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-04-20 06:48:17 +0000 |
commit | 1c40d3cee5cd5fc7d75031b0ccda5a296c62874a (patch) | |
tree | b5c5aba6cfa9e381aa4c254cd5c1013bf2e66f7b /bootloader | |
parent | eaef66efb493a53416e83df0a19d90e1ef9608ef (diff) |
Ooops. DRAM can't start at 0x30000000 on iRiver
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6325 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader')
-rw-r--r-- | bootloader/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader/main.c b/bootloader/main.c index 0cad6ff208..dbc8bf480f 100644 --- a/bootloader/main.c +++ b/bootloader/main.c @@ -62,7 +62,7 @@ int load_firmware(void) unsigned long chksum; unsigned long sum; int i; - unsigned char *buf = (unsigned char *)0x30000000; + unsigned char *buf = (unsigned char *)0x31000000; char str[80]; fd = open("/rockbox.iriver", O_RDONLY); |