diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-09-08 23:33:10 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-09-09 15:33:11 -0400 |
commit | fb0fe206fe227660f6d37eb1c2a39a5405e7ca1c (patch) | |
tree | 5b2d0647adaa7b842bca04c7244ba35af0a9fb75 | |
parent | fefc97bfa82ebb1f47922245cd320e2a3bead7f2 (diff) | |
download | librambutan-fb0fe206fe227660f6d37eb1c2a39a5405e7ca1c.tar.gz librambutan-fb0fe206fe227660f6d37eb1c2a39a5405e7ca1c.zip |
common_rom.inc: Eliminate apparently useless sections.
-rw-r--r-- | support/ld/common_rom.inc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/support/ld/common_rom.inc b/support/ld/common_rom.inc index 3ab08c2..05edf3c 100644 --- a/support/ld/common_rom.inc +++ b/support/ld/common_rom.inc @@ -15,9 +15,6 @@ SECTIONS */ *(.stm32.interrupt_vector) - *(.rom) - *(.rom.b) - /* * Program code and vague linking */ @@ -108,21 +105,16 @@ SECTIONS { __cs3_region_start_ram = .; - KEEP(*(.jcr)) *(.got.plt) *(.got) - *(.shdata) *(.data .data.* .gnu.linkonce.d.*) - *(.ram) . = ALIGN (8); _edata = .; } > REGION_DATA AT> REGION_TEXT .bss : { - *(.shbss) *(.bss .bss.* .gnu.linkonce.b.*) *(COMMON) - *(.ram.b) . = ALIGN (8); _end = .; } > REGION_BSS AT> REGION_TEXT |