summaryrefslogtreecommitdiffstats
path: root/firmware
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 /firmware
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
Diffstat (limited to 'firmware')
-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)
MEMORY
{
- IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
- DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
+ IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
+ DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
}
SECTIONS
{
- .vectors :
- {
- _loadaddress = .;
- _dramend = . + DRAMSIZE;
- *(.vectors)
- . = ALIGN(0x200);
- } > DRAM
+ .vectors :
+ {
+ _loadaddress = .;
+ _dramend = . + DRAMSIZE;
+ *(.vectors)
+ . = ALIGN(0x200);
+ } > DRAM
- .text :
- {
- *(.start)
- *(.text)
- . = ALIGN(0x4);
- } > DRAM
+ .text :
+ {
+ *(.start)
+ *(.text)
+ . = ALIGN(0x4);
+ } > DRAM
.rodata :
{
@@ -36,36 +36,36 @@ SECTIONS
. = ALIGN(0x4);
} > DRAM
- .data :
- {
- *(.data)
- . = ALIGN(0x4);
- _iramcopy = .;
- } > DRAM
+ .data :
+ {
+ *(.data)
+ . = ALIGN(0x4);
+ _iramcopy = .;
+ } > DRAM
- .iram IRAMORIG : AT ( _iramcopy )
- {
- _iramstart = .;
- *(.icode)
- *(.idata)
- . = ALIGN(0x4);
- _iramend = .;
- } > IRAM
+ .iram IRAMORIG : AT ( _iramcopy )
+ {
+ _iramstart = .;
+ *(.icode)
+ *(.idata)
+ . = ALIGN(0x4);
+ _iramend = .;
+ } > IRAM
- .stack :
- {
- _stackbegin = .;
- *(.stack)
+ .stack :
+ {
+ _stackbegin = .;
+ *(.stack)
. += 0x0800;
- _stackend = .;
- } > IRAM
+ _stackend = .;
+ } > IRAM
- .bss :
- {
- _edata = .;
- *(.bss)
+ .bss :
+ {
+ _edata = .;
+ *(.bss)
*(COMMON)
- . = ALIGN(0x4);
- _end = .;
- } > DRAM
+ . = ALIGN(0x4);
+ _end = .;
+ } > DRAM
}