From 715d6167e07a46f5bc37f42993c209450484bbe8 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 19 Jun 2018 15:10:36 +0200 Subject: bsps: Support .rtemsstack.* linker input sections Use a dedicated memory region or place it between the BSS and workspace. Update #3459. --- bsps/mips/hurricane/start/linkcmds | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bsps/mips/hurricane/start/linkcmds') diff --git a/bsps/mips/hurricane/start/linkcmds b/bsps/mips/hurricane/start/linkcmds index 4e10c29f6e..3ffaf52710 100644 --- a/bsps/mips/hurricane/start/linkcmds +++ b/bsps/mips/hurricane/start/linkcmds @@ -172,9 +172,12 @@ SECTIONS _stack_init = .; end = .; _end = .; - WorkAreaBase = .; } + .rtemsstack (NOLOAD) : { + *(SORT(.rtemsstack.*)) + WorkAreaBase = .; + } /* Debug sections. These should never be loadable, but they must have zero addresses for the debuggers to work correctly. */ -- cgit v1.2.3