forked from Imagelibrary/rtems
bsps: Support .rtemsstack.* linker input sections
Use a dedicated memory region or place it between the BSS and workspace. Update #3459.
This commit is contained in:
@@ -206,9 +206,14 @@ SECTIONS
|
||||
end = .;
|
||||
_end = .;
|
||||
__end = .;
|
||||
|
||||
. = ALIGN (16); /* arbitrary alignment */
|
||||
} > ram
|
||||
|
||||
.rtemsstack (NOLOAD) : {
|
||||
*(SORT(.rtemsstack.*))
|
||||
PROVIDE (WorkAreaBase = .);
|
||||
} > ram
|
||||
|
||||
.heap : {
|
||||
. += HeapSize;
|
||||
PROVIDE (HeapBase = .);
|
||||
. += HeapSize;
|
||||
|
||||
Reference in New Issue
Block a user