summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-02-26 08:24:08 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-02-26 08:24:08 +0000
commitb2b376539a8e3e940174102c3563a00c45e18255 (patch)
tree9509ea57d13b9924edb4a38b7b911aaa07f3f466 /firmware
parent0f4141e8e299a4ed639b16a1ccdf7d55b27de03b (diff)
downloadrockbox-b2b376539a8e3e940174102c3563a00c45e18255.tar.gz
rockbox-b2b376539a8e3e940174102c3563a00c45e18255.zip
this is not being used anymore
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3343 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/player.lds80
1 files changed, 0 insertions, 80 deletions
diff --git a/firmware/player.lds b/firmware/player.lds
deleted file mode 100644
index 3cbf38210e..0000000000
--- a/firmware/player.lds
+++ /dev/null
@@ -1,80 +0,0 @@
-ENTRY(start)
-OUTPUT_FORMAT(elf32-sh)
-INPUT(crt0.o)
-
-MEMORY
-{
- DRAM : ORIGIN = 0x09000000, LENGTH = 0x200000
- IRAM : ORIGIN = 0x0f000000, LENGTH = 0x1000
-}
-
-SECTIONS
-{
- .vectors :
- {
- *(.resetvectors);
- *(.vectors);
- . = ALIGN(0x200);
- *(.init.text)
- } > DRAM
-
- .text :
- {
- *(.text)
- } > DRAM
-
- .data :
- {
- *(.data)
- } > DRAM
-
- .rodata :
- {
- *(.rodata)
- *(.rodata.str1.4)
- } > DRAM
-
- .stack :
- {
- *(.stack)
- _stackbegin = .;
- /* We put the copy of the .iram section here to save space */
- _iramcopy = .;
- . += 0x2000;
- _topramcopy = .;
- . += 0x300;
- _stackend = .;
- } > DRAM
-
- .bss :
- {
- _edata = .;
- *(.bss)
- *(COMMON)
- _end = .;
- } > DRAM
-
- .mp3buf :
- {
- _mp3buf = .;
- } > DRAM
-
- .mp3end 0x09200000 - 0x300:
- {
- _mp3end = .;
- } > DRAM
-
- .topram : AT ( _topramcopy ) {
- _topramstart = .;
- *(.topcode)
- _topramend = .;
- } > DRAM
-
- .iram 0xf000000 : AT ( _iramcopy )
- {
- _iramstart = .;
- *(.icode)
- *(.idata)
- _iramend = .;
- } > IRAM
-}