summaryrefslogtreecommitdiff
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 @@
1ENTRY(start)
2OUTPUT_FORMAT(elf32-sh)
3INPUT(crt0.o)
4
5MEMORY
6{
7 DRAM : ORIGIN = 0x09000000, LENGTH = 0x200000
8 IRAM : ORIGIN = 0x0f000000, LENGTH = 0x1000
9}
10
11SECTIONS
12{
13 .vectors :
14 {
15 *(.resetvectors);
16 *(.vectors);
17 . = ALIGN(0x200);
18 *(.init.text)
19 } > DRAM
20
21 .text :
22 {
23 *(.text)
24 } > DRAM
25
26 .data :
27 {
28 *(.data)
29 } > DRAM
30
31 .rodata :
32 {
33 *(.rodata)
34 *(.rodata.str1.4)
35 } > DRAM
36
37 .stack :
38 {
39 *(.stack)
40 _stackbegin = .;
41 /* We put the copy of the .iram section here to save space */
42 _iramcopy = .;
43 . += 0x2000;
44 _topramcopy = .;
45 . += 0x300;
46 _stackend = .;
47 } > DRAM
48
49 .bss :
50 {
51 _edata = .;
52 *(.bss)
53 *(COMMON)
54 _end = .;
55 } > DRAM
56
57 .mp3buf :
58 {
59 _mp3buf = .;
60 } > DRAM
61
62 .mp3end 0x09200000 - 0x300:
63 {
64 _mp3end = .;
65 } > DRAM
66
67 .topram : AT ( _topramcopy ) {
68 _topramstart = .;
69 *(.topcode)
70 _topramend = .;
71 } > DRAM
72
73 .iram 0xf000000 : AT ( _iramcopy )
74 {
75 _iramstart = .;
76 *(.icode)
77 *(.idata)
78 _iramend = .;
79 } > IRAM
80}