summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-03-04 09:22:32 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-03-04 09:25:21 +0100
commitdbe6e0ad09881d596a41d247686d18eaa43cd897 (patch)
tree643490a0f9aa82ae5102325b5154cf979f276424
parentbsps/powerpc: Fix PAGE_ALIGN() macros (diff)
downloadrtems-dbe6e0ad09881d596a41d247686d18eaa43cd897.tar.bz2
bsps/powerpc: Move .rtemstack section
Move the .rtemsstack section from a read-only to a read-write area, see page table setup in __BSP_default_pgtbl_setup().
-rw-r--r--bsps/powerpc/shared/start/linkcmds.share7
1 files changed, 3 insertions, 4 deletions
diff --git a/bsps/powerpc/shared/start/linkcmds.share b/bsps/powerpc/shared/start/linkcmds.share
index 2fc66015cb..25655236a7 100644
--- a/bsps/powerpc/shared/start/linkcmds.share
+++ b/bsps/powerpc/shared/start/linkcmds.share
@@ -97,10 +97,6 @@ SECTIONS
_TLS_Size = _TLS_BSS_end - _TLS_Data_begin;
_TLS_Alignment = MAX (ALIGNOF (.tdata), ALIGNOF (.tbss));
- .rtemsstack (NOLOAD) : {
- *(SORT(.rtemsstack.*))
- } >CODE
-
/* Adjust the address for the data segment. We want to adjust up to
the same address within the page on the next page up. */
. = ALIGN(0x10000) + (. & (0x10000 - 1));
@@ -245,6 +241,9 @@ SECTIONS
. = ALIGN(16);
PROVIDE (__bss_end = .);
} > CODE
+ .rtemsstack (NOLOAD) : {
+ *(SORT(.rtemsstack.*))
+ } >CODE
. = ALIGN(16);
_end = . ;
__rtems_end = . ;