From 8c5a743259480ebd0cfdbb17fbde8584e34b2aa4 Mon Sep 17 00:00:00 2001 From: Bert Lange Date: Wed, 15 Apr 2015 13:54:39 +0200 Subject: clean up --- uc_str912/scripts/str912fw44.ld | 61 ----------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 uc_str912/scripts/str912fw44.ld (limited to 'uc_str912/scripts/str912fw44.ld') diff --git a/uc_str912/scripts/str912fw44.ld b/uc_str912/scripts/str912fw44.ld deleted file mode 100644 index feabaa4..0000000 --- a/uc_str912/scripts/str912fw44.ld +++ /dev/null @@ -1,61 +0,0 @@ -OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") -OUTPUT_ARCH(arm) - -MEMORY -{ - flash (RX) : ORIGIN = 0x00000000, LENGTH = 512k - sram (W!RX) : ORIGIN = 0x04000000, LENGTH = 96k -} - -SECTIONS -{ - .fixed : - { - . = ALIGN(4); - _sfixed = .; - *(.text .text.*) - *(.rodata .rodata.*) - *(.gnu.linkonce.t.*) - *(.glue_7) - *(.glue_7t) - *(.gcc_except_table) - *(.gnu.linkonce.r.*) - } >flash - -/* .ARM.extab : { *(.ARM.extab*) } */ - - . = ALIGN(4); - - __exidx_start = .; - .ARM.exidx : { - *(.ARM.exidx* .gnu.linkonce.armexidx.*) - } >flash - __exidx_end = .; - - . = ALIGN(4); - - _efixed = .; - PROVIDE(etext = .); - - .relocate : AT (_efixed) - { - . = ALIGN(4); - _srelocate = .; - *(.data .data.*) - *(.gnu.linkonce.d.*) - . = ALIGN(4); - _erelocate = .; - } >sram - - .bss (NOLOAD) : { - _szero = .; - *(.bss .bss.*) - *(.gnu.linkonce.b.*) - *(COMMON) - . = ALIGN(4); - _ezero = .; - } >sram - . = ALIGN(4); - - end = .; -} -- cgit v1.1