diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-11-03 18:42:50 -0500 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-11-03 23:43:32 +0000 |
commit | 090bd9592df1e05e289e658c2530ae277a205318 (patch) | |
tree | f6be20462fa97d0d20a2e2b3fbe6e43e06cd1b42 /firmware/decompressor/link.lds | |
parent | 066d471ae6dd34eda370c5f610adaefa1029bab9 (diff) | |
download | rockbox-090bd9592d.tar.gz rockbox-090bd9592d.tar.bz2 rockbox-090bd9592d.zip |
Remove the firmware decompressor and a few more other SH-stragglers.
Change-Id: Ic568755afcccc6db1b6e791b1ed0d2588b90356f
Diffstat (limited to 'firmware/decompressor/link.lds')
-rw-r--r-- | firmware/decompressor/link.lds | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/firmware/decompressor/link.lds b/firmware/decompressor/link.lds deleted file mode 100644 index 51c0460d42..0000000000 --- a/firmware/decompressor/link.lds +++ /dev/null @@ -1,71 +0,0 @@ -OUTPUT_FORMAT(elf32-sh) - -#define DRAMORIG 0x09000000 -#define DRAMSIZE (MEMORYSIZE * 0x00100000) -#define IRAMORIG 0x0f000000 -#define IRAMSIZE 0x00001000 - -MEMORY -{ - IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE - DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE -} - -SECTIONS -{ - .vectors : - { - _loadaddress = .; - _dramend = . + DRAMSIZE; - KEEP(*(.vectors)) - . = ALIGN(0x200); - } > DRAM - - .text : - { - *(.start) - *(.text) - . = ALIGN(0x4); - } > DRAM - - .rodata : - { - *(.rodata*) - *(.rodata.str1.1) - *(.rodata.str1.4) - . = ALIGN(0x4); - } > DRAM - - .data : - { - *(.data) - . = ALIGN(0x4); - _iramcopy = .; - } > DRAM - - .iram IRAMORIG : AT ( _iramcopy ) - { - _iramstart = .; - *(.icode) - *(.idata) - . = ALIGN(0x4); - _iramend = .; - } > IRAM - - .stack : - { - _stackbegin = .; - *(.stack) - . += 0x0800; - _stackend = .; - } > IRAM - - .bss : - { - _edata = .; - *(.bss) - *(COMMON) - . = ALIGN(0x4); - _end = .; - } > DRAM -} |