diff options
Diffstat (limited to 'arch/cris/boot/compressed/decompress_v32.lds')
-rw-r--r-- | arch/cris/boot/compressed/decompress_v32.lds | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/arch/cris/boot/compressed/decompress_v32.lds b/arch/cris/boot/compressed/decompress_v32.lds deleted file mode 100644 index 91d311c..0000000 --- a/arch/cris/boot/compressed/decompress_v32.lds +++ /dev/null @@ -1,31 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ -/*#OUTPUT_FORMAT(elf32-us-cris) */ -OUTPUT_ARCH (crisv32) - -MEMORY - { - dram : ORIGIN = 0x40700000, - LENGTH = 0x00100000 - } - -SECTIONS -{ - .text : - { - _stext = . ; - *(.text) - *(.rodata) - *(.rodata.*) - _etext = . ; - } > dram - .data : - { - *(.data) - _edata = . ; - } > dram - .bss : - { - *(.bss) - _end = ALIGN( 0x10 ) ; - } > dram -} |