summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-11-07 00:22:15 +0000
committerJens Arnold <amiconn@rockbox.org>2008-11-07 00:22:15 +0000
commit97aef4ce11aea50ed13f11b725a2147acfe6445c (patch)
tree0fbb8971decfaf82dbfe52903f8fca592322bfa3
parent4944a1c1e1d29ae86163bcf11d00942cfdc1b04e (diff)
downloadrockbox-97aef4ce11aea50ed13f11b725a2147acfe6445c.tar.gz
rockbox-97aef4ce11aea50ed13f11b725a2147acfe6445c.zip
Fix tabs galore.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19034 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/decompressor/link.lds84
1 files changed, 42 insertions, 42 deletions
diff --git a/firmware/decompressor/link.lds b/firmware/decompressor/link.lds
index e6abbe2c59..a33993d9b0 100644
--- a/firmware/decompressor/link.lds
+++ b/firmware/decompressor/link.lds
@@ -7,26 +7,26 @@ OUTPUT_FORMAT(elf32-sh)
7 7
8MEMORY 8MEMORY
9{ 9{
10 IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE 10 IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
11 DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE 11 DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
12} 12}
13 13
14SECTIONS 14SECTIONS
15{ 15{
16 .vectors : 16 .vectors :
17 { 17 {
18 _loadaddress = .; 18 _loadaddress = .;
19 _dramend = . + DRAMSIZE; 19 _dramend = . + DRAMSIZE;
20 *(.vectors) 20 *(.vectors)
21 . = ALIGN(0x200); 21 . = ALIGN(0x200);
22 } > DRAM 22 } > DRAM
23 23
24 .text : 24 .text :
25 { 25 {
26 *(.start) 26 *(.start)
27 *(.text) 27 *(.text)
28 . = ALIGN(0x4); 28 . = ALIGN(0x4);
29 } > DRAM 29 } > DRAM
30 30
31 .rodata : 31 .rodata :
32 { 32 {
@@ -36,36 +36,36 @@ SECTIONS
36 . = ALIGN(0x4); 36 . = ALIGN(0x4);
37 } > DRAM 37 } > DRAM
38 38
39 .data : 39 .data :
40 { 40 {
41 *(.data) 41 *(.data)
42 . = ALIGN(0x4); 42 . = ALIGN(0x4);
43 _iramcopy = .; 43 _iramcopy = .;
44 } > DRAM 44 } > DRAM
45 45
46 .iram IRAMORIG : AT ( _iramcopy ) 46 .iram IRAMORIG : AT ( _iramcopy )
47 { 47 {
48 _iramstart = .; 48 _iramstart = .;
49 *(.icode) 49 *(.icode)
50 *(.idata) 50 *(.idata)
51 . = ALIGN(0x4); 51 . = ALIGN(0x4);
52 _iramend = .; 52 _iramend = .;
53 } > IRAM 53 } > IRAM
54 54
55 .stack : 55 .stack :
56 { 56 {
57 _stackbegin = .; 57 _stackbegin = .;
58 *(.stack) 58 *(.stack)
59 . += 0x0800; 59 . += 0x0800;
60 _stackend = .; 60 _stackend = .;
61 } > IRAM 61 } > IRAM
62 62
63 .bss : 63 .bss :
64 { 64 {
65 _edata = .; 65 _edata = .;
66 *(.bss) 66 *(.bss)
67 *(COMMON) 67 *(COMMON)
68 . = ALIGN(0x4); 68 . = ALIGN(0x4);
69 _end = .; 69 _end = .;
70 } > DRAM 70 } > DRAM
71} 71}