From 090bd9592df1e05e289e658c2530ae277a205318 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Tue, 3 Nov 2020 18:42:50 -0500 Subject: Remove the firmware decompressor and a few more other SH-stragglers. Change-Id: Ic568755afcccc6db1b6e791b1ed0d2588b90356f --- firmware/decompressor/link.lds | 71 ------------------------------------------ 1 file changed, 71 deletions(-) delete mode 100644 firmware/decompressor/link.lds (limited to 'firmware/decompressor/link.lds') 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 -} -- cgit v1.2.3