From 97aef4ce11aea50ed13f11b725a2147acfe6445c Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Fri, 7 Nov 2008 00:22:15 +0000 Subject: Fix tabs galore. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19034 a1c6a512-1295-4272-9138-f99709370657 --- firmware/decompressor/link.lds | 84 +++++++++++++++++++++--------------------- 1 file changed, 42 insertions(+), 42 deletions(-) (limited to 'firmware/decompressor') 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 } -- cgit