summaryrefslogtreecommitdiffstats
path: root/firmware/boot.lds
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-12-06 14:29:26 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-12-06 14:29:26 +0000
commite8224def395d8e0c00afbad978db61d49b66cacf (patch)
tree957dd315aab04b3381d707fb35fdfdb95c190407 /firmware/boot.lds
parent637ab47de6dc8c75aee5697366d5e783b492c645 (diff)
downloadrockbox-e8224def395d8e0c00afbad978db61d49b66cacf.tar.gz
rockbox-e8224def395d8e0c00afbad978db61d49b66cacf.zip
Both iriver boot loaders have to use DRAM now, since the unicode codepage table doesn't fit in IRAM
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8171 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/boot.lds')
-rw-r--r--firmware/boot.lds4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/boot.lds b/firmware/boot.lds
index eb6e355302..f5f82d121d 100644
--- a/firmware/boot.lds
+++ b/firmware/boot.lds
@@ -139,7 +139,7 @@ SECTIONS
stackend = .;
} > IRAM
-#ifdef IRIVER_H300_SERIES
+#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
.bss DRAMORIG+0x1000000:
#else
.bss :
@@ -150,7 +150,7 @@ SECTIONS
*(.bss)
*(COMMON)
_end = .;
-#ifdef IRIVER_H300_SERIES
+#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
} > DRAM
#else
} > IRAM