summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx233/boot.lds
diff options
context:
space:
mode:
authorAmaury Pouly <pamaury@rockbox.org>2011-07-23 11:45:18 +0000
committerAmaury Pouly <pamaury@rockbox.org>2011-07-23 11:45:18 +0000
commit06c94740e510d0ce04e069f34631a0539e9e6742 (patch)
tree64035ab2001e3820ab0dd61e328d5fa16140f4c0 /firmware/target/arm/imx233/boot.lds
parent3f8bf5e041fe052c859f283c9309118f3e791440 (diff)
downloadrockbox-06c94740e510d0ce04e069f34631a0539e9e6742.tar.gz
rockbox-06c94740e510d0ce04e069f34631a0539e9e6742.zip
imx233/fuze+: prepare target to enable MMU
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30199 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/imx233/boot.lds')
-rw-r--r--firmware/target/arm/imx233/boot.lds6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/imx233/boot.lds b/firmware/target/arm/imx233/boot.lds
index cb925b055e..0a8f0ed8f8 100644
--- a/firmware/target/arm/imx233/boot.lds
+++ b/firmware/target/arm/imx233/boot.lds
@@ -8,8 +8,8 @@ STARTUP(target/arm/imx233/crt0.o)
8 8
9MEMORY 9MEMORY
10{ 10{
11 IRAM : ORIGIN = IRAM_ORIG, LENGTH = IRAM_SIZE 11 IRAM : ORIGIN = IRAM_ORIG, LENGTH = IRAM_SIZE - TTB_SIZE
12 DRAM : ORIGIN = DRAM_ORIG, LENGTH = DRAM_SIZE - TTB_SIZE 12 DRAM : ORIGIN = DRAM_ORIG, LENGTH = DRAM_SIZE - FRAME_SIZE
13} 13}
14 14
15SECTIONS 15SECTIONS
@@ -30,7 +30,7 @@ SECTIONS
30 { 30 {
31 _iramstart = .; // always 0 31 _iramstart = .; // always 0
32 *(.vectors) 32 *(.vectors)
33 KEEP(*(.vectors));// otherwise there are no reference to it and the linker strip it 33 KEEP(*(.vectors));// otherwise there are no references to it and the linker strip it
34 *(.icode) 34 *(.icode)
35 *(.irodata) 35 *(.irodata)
36 *(.idata) 36 *(.idata)