From ad8996c4ee028bfead4b165149cb748febec498a Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Sun, 1 Mar 2020 14:20:34 +0100 Subject: [PATCH] arm: fix linker script There were a few instances like `.text` and `.text*`. The first was redundant with the second, but the intention was to write `.text.*`. This doesn't change anything (tested with `make smoketest`) but should avoid propagating this error in the future. --- targets/arm.ld | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/targets/arm.ld b/targets/arm.ld index f1e82c57..347ed16c 100644 --- a/targets/arm.ld +++ b/targets/arm.ld @@ -10,9 +10,9 @@ SECTIONS { KEEP(*(.isr_vector)) *(.text) - *(.text*) + *(.text.*) *(.rodata) - *(.rodata*) + *(.rodata.*) . = ALIGN(4); } >FLASH_TEXT @@ -35,7 +35,7 @@ SECTIONS . = ALIGN(4); _sdata = .; /* used by startup code */ *(.data) - *(.data*) + *(.data.*) . = ALIGN(4); _edata = .; /* used by startup code */ } >RAM AT>FLASH_TEXT @@ -46,7 +46,7 @@ SECTIONS . = ALIGN(4); _sbss = .; /* used by startup code */ *(.bss) - *(.bss*) + *(.bss.*) *(COMMON) . = ALIGN(4); _ebss = .; /* used by startup code */