summaryrefslogtreecommitdiffstats
path: root/bsps/m68k/shared/start/linkcmds.base
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-04-30 15:47:10 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-05-02 18:41:21 +0200
commite10dec0fe72c19320d2c93b905457a5327ec1235 (patch)
tree5552dc51b826b97490d640cb893ff084e43ae8ff /bsps/m68k/shared/start/linkcmds.base
parentbasedefs: Add RTEMS_NOINIT (diff)
downloadrtems-e10dec0fe72c19320d2c93b905457a5327ec1235.tar.bz2
bsps: Support RTEMS_NOINIT in linkcmds
Update #3866.
Diffstat (limited to 'bsps/m68k/shared/start/linkcmds.base')
-rw-r--r--bsps/m68k/shared/start/linkcmds.base7
1 files changed, 7 insertions, 0 deletions
diff --git a/bsps/m68k/shared/start/linkcmds.base b/bsps/m68k/shared/start/linkcmds.base
index 1daf2e1bc7..92c4a5d5c3 100644
--- a/bsps/m68k/shared/start/linkcmds.base
+++ b/bsps/m68k/shared/start/linkcmds.base
@@ -249,6 +249,13 @@ SECTIONS {
} > REGION_DATA AT > REGION_DATA
bsp_section_bss_size = bsp_section_bss_end - bsp_section_bss_begin;
+ .noinit (NOLOAD) : ALIGN_WITH_INPUT {
+ bsp_section_noinit_begin = .;
+ *(.noinit*)
+ bsp_section_noinit_end = .;
+ } > REGION_DATA AT > REGION_DATA
+ bsp_section_noinit_size = bsp_section_noinit_end - bsp_section_noinit_begin;
+
.rtemsstack (NOLOAD) : ALIGN_WITH_INPUT {
*(SORT(.rtemsstack.*))
} > REGION_DATA AT > REGION_DATA