diff options
author | Marcoen Hirschberg <marcoen@gmail.com> | 2008-03-27 23:58:03 +0000 |
---|---|---|
committer | Marcoen Hirschberg <marcoen@gmail.com> | 2008-03-27 23:58:03 +0000 |
commit | 82c52302bdc664fdcb177811c65c2891d53ef73a (patch) | |
tree | 0e84d262d97cc3a3b9e9983780d51cc3c18eb0db /firmware/target/arm/iriver | |
parent | 8406d92475024bec99a99371c3a8c4b243ff2015 (diff) |
split boot.lds and move it into the target tree
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16855 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/iriver')
-rw-r--r-- | firmware/target/arm/iriver/boot.lds | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/firmware/target/arm/iriver/boot.lds b/firmware/target/arm/iriver/boot.lds new file mode 100644 index 0000000000..5fbe999333 --- /dev/null +++ b/firmware/target/arm/iriver/boot.lds @@ -0,0 +1,53 @@ +#include "config.h" + +ENTRY(start) +OUTPUT_FORMAT(elf32-littlearm) +OUTPUT_ARCH(arm) +INPUT(target/arm/crt0-pp-bl.o) + +#define DRAMSIZE (MEMORYSIZE * 0x100000) + +#define DRAMORIG 0x10000000 +#define IRAMORIG 0x40000000 +#define IRAMSIZE 0x18000 +#define FLASHORIG 0x001f0000 +#define FLASHSIZE 2M + +SECTIONS +{ + . = IRAMORIG; + + .text : { + *(.init.text) + *(.text*) + } + + .data : { + *(.icode) + *(.irodata) + *(.idata) + *(.data*) + _dataend = . ; + } + + .stack : + { + *(.stack) + _stackbegin = .; + stackbegin = .; + . += 0x2000; + _stackend = .; + stackend = .; + } + + /* The bss section is too large for IRAM - we just move it 16MB into the + DRAM */ + + . = (DRAMORIG+16*1024*1024); + .bss : { + _edata = .; + *(.bss*); + *(.ibss); + _end = .; + } +} |