From e10dec0fe72c19320d2c93b905457a5327ec1235 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 30 Apr 2021 15:47:10 +0200 Subject: bsps: Support RTEMS_NOINIT in linkcmds Update #3866. --- bsps/x86_64/amd64/start/linkcmds | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bsps/x86_64/amd64/start/linkcmds') diff --git a/bsps/x86_64/amd64/start/linkcmds b/bsps/x86_64/amd64/start/linkcmds index c60d07d6ec..ab6981e872 100644 --- a/bsps/x86_64/amd64/start/linkcmds +++ b/bsps/x86_64/amd64/start/linkcmds @@ -10,6 +10,7 @@ * Changes: * - Added HeapSize, RamBase, RamSize, WorkBase * - rtemssroset section + * - noinit section * - rtemsstack section */ @@ -231,6 +232,10 @@ SECTIONS } . = ALIGN(64 / 8); _end = .; PROVIDE (end = .); + .noinit (NOLOAD) : + { + *(.noinit*) + } .rtemsstack (NOLOAD) : { *(SORT(.rtemsstack.*)) -- cgit v1.2.3