summaryrefslogtreecommitdiff
path: root/firmware/target/arm/tcc77x/boot.lds
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2008-09-06 17:50:59 +0000
committerDave Chapman <dave@dchapman.com>2008-09-06 17:50:59 +0000
commitd462a64a918117991e11dade2d7fa3a28196e07a (patch)
tree0a6f5ed8777b18bb1641fbb3608f10374901706c /firmware/target/arm/tcc77x/boot.lds
parentb87715f670f04c9adbe358c32a385c6771d99a81 (diff)
downloadrockbox-d462a64a918117991e11dade2d7fa3a28196e07a.tar.gz
rockbox-d462a64a918117991e11dade2d7fa3a28196e07a.zip
Initial commit of iaudio 7 port by Vitja Makarov (FS#9245). Port is at quite an advanced stage, but is troubled by the lack of a reliable NAND driver (similar to the Cowon D2 port) and is not yet suitable for non-developers.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18435 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/tcc77x/boot.lds')
-rw-r--r--firmware/target/arm/tcc77x/boot.lds5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/target/arm/tcc77x/boot.lds b/firmware/target/arm/tcc77x/boot.lds
index 890c4ec785..2fd6964d57 100644
--- a/firmware/target/arm/tcc77x/boot.lds
+++ b/firmware/target/arm/tcc77x/boot.lds
@@ -14,7 +14,11 @@ STARTUP(target/arm/tcc77x/crt0.o)
14 14
15MEMORY 15MEMORY
16{ 16{
17#ifdef TCCBOOT
17 DRAM : ORIGIN = DRAMORIG + DRAMSIZE - 0x100000, LENGTH = 0x100000 18 DRAM : ORIGIN = DRAMORIG + DRAMSIZE - 0x100000, LENGTH = 0x100000
19#else
20 DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
21#endif
18 IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE 22 IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
19} 23}
20 24
@@ -34,6 +38,7 @@ SECTIONS
34 *(.idata) 38 *(.idata)
35 *(.data*) 39 *(.data*)
36 *(.rodata.*) 40 *(.rodata.*)
41 *(.rodata)
37 . = ALIGN(0x4); 42 . = ALIGN(0x4);
38 _dataend = . ; 43 _dataend = . ;
39 } > DRAM 44 } > DRAM