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.
Этот коммит содержится в:
Ayke van Laethem 2020-03-01 14:20:34 +01:00 коммит произвёл Ron Evans
родитель 571a412266
коммит ad8996c4ee

Просмотреть файл

@ -10,9 +10,9 @@ SECTIONS
{ {
KEEP(*(.isr_vector)) KEEP(*(.isr_vector))
*(.text) *(.text)
*(.text*) *(.text.*)
*(.rodata) *(.rodata)
*(.rodata*) *(.rodata.*)
. = ALIGN(4); . = ALIGN(4);
} >FLASH_TEXT } >FLASH_TEXT
@ -35,7 +35,7 @@ SECTIONS
. = ALIGN(4); . = ALIGN(4);
_sdata = .; /* used by startup code */ _sdata = .; /* used by startup code */
*(.data) *(.data)
*(.data*) *(.data.*)
. = ALIGN(4); . = ALIGN(4);
_edata = .; /* used by startup code */ _edata = .; /* used by startup code */
} >RAM AT>FLASH_TEXT } >RAM AT>FLASH_TEXT
@ -46,7 +46,7 @@ SECTIONS
. = ALIGN(4); . = ALIGN(4);
_sbss = .; /* used by startup code */ _sbss = .; /* used by startup code */
*(.bss) *(.bss)
*(.bss*) *(.bss.*)
*(COMMON) *(COMMON)
. = ALIGN(4); . = ALIGN(4);
_ebss = .; /* used by startup code */ _ebss = .; /* used by startup code */