diff options
author | Amaury Pouly <pamaury@rockbox.org> | 2011-07-23 11:45:18 +0000 |
---|---|---|
committer | Amaury Pouly <pamaury@rockbox.org> | 2011-07-23 11:45:18 +0000 |
commit | 06c94740e510d0ce04e069f34631a0539e9e6742 (patch) | |
tree | 64035ab2001e3820ab0dd61e328d5fa16140f4c0 /firmware/target/arm/imx233/boot.lds | |
parent | 3f8bf5e041fe052c859f283c9309118f3e791440 (diff) | |
download | rockbox-06c94740e510d0ce04e069f34631a0539e9e6742.tar.gz rockbox-06c94740e510d0ce04e069f34631a0539e9e6742.tar.bz2 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.lds | 6 |
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) MEMORY { - IRAM : ORIGIN = IRAM_ORIG, LENGTH = IRAM_SIZE - DRAM : ORIGIN = DRAM_ORIG, LENGTH = DRAM_SIZE - TTB_SIZE + IRAM : ORIGIN = IRAM_ORIG, LENGTH = IRAM_SIZE - TTB_SIZE + DRAM : ORIGIN = DRAM_ORIG, LENGTH = DRAM_SIZE - FRAME_SIZE } SECTIONS @@ -30,7 +30,7 @@ SECTIONS { _iramstart = .; // always 0 *(.vectors) - KEEP(*(.vectors));// otherwise there are no reference to it and the linker strip it + KEEP(*(.vectors));// otherwise there are no references to it and the linker strip it *(.icode) *(.irodata) *(.idata) |