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.
This commit is contained in:
Ayke van Laethem
2020-03-01 14:20:34 +01:00
committed by Ron Evans
parent 571a412266
commit ad8996c4ee
+4 -4
View File
@@ -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 */