aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-31 22:04:24 -0700
committerChristian Cunningham <cc@localhost>2022-01-31 22:04:24 -0700
commit352c8713ddb99f4b9f3c73b5b6b8bc9e83f6b6bd (patch)
treede19d63010ddbc8c42653c81a5ffb7cd07a0da1d /linker.ld
parent1b4c8e04ded44fa11a1e95d2db5bef4b8eaddcd1 (diff)
All the cores
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld8
1 files changed, 6 insertions, 2 deletions
diff --git a/linker.ld b/linker.ld
index 474bdeb..b7048ab 100644
--- a/linker.ld
+++ b/linker.ld
@@ -30,9 +30,13 @@ SECTIONS
.bss :
{
bss = .;
+ . = ALIGN(4096);
+ KEEP(*(.bss.estacks))
+ . = ALIGN(4096);
+ *(.bss)
*(.bss.*)
- *(.bss.mmheap)
- *(.bss.mmheap.base)
+ KEEP(*(.bss.mmheap))
+ KEEP(*(.bss.mmheap.base))
}
. = ALIGN(4096); /* align to page size */
__bss_end = .;