summaryrefslogtreecommitdiff
path: root/firmware/gdb.lds
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-02-26 16:06:01 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-02-26 16:06:01 +0000
commit97d88c32baf94a0f88499246e3a6d73b7a052449 (patch)
treee54601332fc44b76a4c75be4d2634728dcd1a198 /firmware/gdb.lds
parentb0c6276b40a53c5ca96474c6f76fa566d81cf1c6 (diff)
downloadrockbox-97d88c32baf94a0f88499246e3a6d73b7a052449.tar.gz
rockbox-97d88c32baf94a0f88499246e3a6d73b7a052449.zip
not used anymore, see app.lds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3348 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/gdb.lds')
-rw-r--r--firmware/gdb.lds87
1 files changed, 0 insertions, 87 deletions
diff --git a/firmware/gdb.lds b/firmware/gdb.lds
deleted file mode 100644
index 2055a63701..0000000000
--- a/firmware/gdb.lds
+++ /dev/null
@@ -1,87 +0,0 @@
1ENTRY(start)
2OUTPUT_FORMAT(elf32-sh)
3INPUT(crt0.o)
4
5MEMORY
6{
7 DRAM : ORIGIN = 0x09010000, LENGTH = 0x1f0000
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 .heap :
58 {
59 _poolstart = .;
60 . = 0x20000;
61 _poolend = .;
62 } > DRAM
63
64 .mp3buf :
65 {
66 _mp3buf = .;
67 } > DRAM
68
69 .mp3end 0x09200000 - 0x300:
70 {
71 _mp3end = .;
72 } > DRAM
73
74 .topram : AT ( _topramcopy ) {
75 _topramstart = .;
76 *(.topcode)
77 _topramend = .;
78 } > DRAM
79
80 .iram 0xf000000 : AT ( _iramcopy )
81 {
82 _iramstart = .;
83 *(.icode)
84 *(.idata)
85 _iramend = .;
86 } > IRAM
87}