summaryrefslogtreecommitdiff
path: root/firmware/app.lds
diff options
context:
space:
mode:
authorWill Robertson <aliask@rockbox.org>2007-12-23 12:19:40 +0000
committerWill Robertson <aliask@rockbox.org>2007-12-23 12:19:40 +0000
commit32f6109fb1df54ccdd5853883fd6b543a3d0a32a (patch)
tree001df8dac99109fa4faaad2e04db69a6a1a93f34 /firmware/app.lds
parenta9933ce32ddabde8961de2601ab1a2f6d26d9b5a (diff)
Gigabeat S memory management stuff.
* Moved crt0.S to imx31 subdirectory, as it was the last target using the unified file. * DRAM is now remapped to 0x0, facilitating interrupts (which aren't done yet) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15965 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/app.lds')
-rw-r--r--firmware/app.lds4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/app.lds b/firmware/app.lds
index 87f3d2ae23..552b4bac45 100644
--- a/firmware/app.lds
+++ b/firmware/app.lds
@@ -15,6 +15,8 @@ INPUT(target/arm/tms320dm320/crt0.o)
INPUT(target/arm/s3c2440/crt0.o)
#elif CONFIG_CPU == PNX0101
INPUT(target/arm/pnx0101/crt0-pnx0101.o)
+#elif CONFIG_CPU == IMX31L
+INPUT(target/arm/imx31/crt0.o)
#elif defined(CPU_ARM)
INPUT(target/arm/crt0.o)
#endif
@@ -70,7 +72,7 @@ INPUT(target/sh/crt0.o)
#define IRAMORIG 0x00000000
#define IRAMSIZE 0x4000
#elif CONFIG_CPU==IMX31L
-#define DRAMORIG (0x88000000 + STUBOFFSET)
+#define DRAMORIG (0x0 + STUBOFFSET)
#define IRAMORIG 0x1FFFC000
#define IRAMSIZE 0x4000
#else