From 352c8713ddb99f4b9f3c73b5b6b8bc9e83f6b6bd Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Mon, 31 Jan 2022 22:04:24 -0700 Subject: All the cores --- linker.ld | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'linker.ld') 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 = .; -- cgit v1.2.1