summaryrefslogtreecommitdiff
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
139 stackend = .; 139 stackend = .;
140 } > IRAM 140 } > IRAM
141 141
142#ifdef IRIVER_H300_SERIES 142#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
143 .bss DRAMORIG+0x1000000: 143 .bss DRAMORIG+0x1000000:
144#else 144#else
145 .bss : 145 .bss :
@@ -150,7 +150,7 @@ SECTIONS
150 *(.bss) 150 *(.bss)
151 *(COMMON) 151 *(COMMON)
152 _end = .; 152 _end = .;
153#ifdef IRIVER_H300_SERIES 153#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
154 } > DRAM 154 } > DRAM
155#else 155#else
156 } > IRAM 156 } > IRAM