summaryrefslogtreecommitdiffstats
path: root/bsps/nios2/nios2_iss/start/linkcmds
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/nios2/nios2_iss/start/linkcmds')
-rw-r--r--bsps/nios2/nios2_iss/start/linkcmds6
1 files changed, 2 insertions, 4 deletions
diff --git a/bsps/nios2/nios2_iss/start/linkcmds b/bsps/nios2/nios2_iss/start/linkcmds
index b900718b6d..bcbfeafe1f 100644
--- a/bsps/nios2/nios2_iss/start/linkcmds
+++ b/bsps/nios2/nios2_iss/start/linkcmds
@@ -24,7 +24,6 @@ DO NOT MODIFY THIS FILE
RamBase = DEFINED(RamBase) ? RamBase : 0x00000000;
RamSize = DEFINED(RamSize) ? RamSize : 0x00800000;
HeapSize = DEFINED(HeapSize) ? HeapSize : 0x0;
-StackSize = DEFINED(StackSize) ? HeapSize : 1024;
MEMORY
{
@@ -265,13 +264,12 @@ SECTIONS
. = ALIGN(32 / 8);
__bss_end = ABSOLUTE(.);
- _stack_low = ABSOLUTE(.);
- . += StackSize;
- _stack_high = ABSOLUTE(.);
} > onchip_memory_0
.rtemsstack (NOLOAD) : {
+ _stack_low = ABSOLUTE(.);
*(SORT(.rtemsstack.*))
+ _stack_high = ABSOLUTE(.);
WorkAreaBase = .;
} > onchip_memory_0