aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-21 15:03:55 -0700
committerChristian Cunningham <cc@localhost>2022-01-21 15:03:55 -0700
commitdfde56396867428de6a81f01689a7a828dc91217 (patch)
treeb361957f370a168ac48177c6c952d38808000071 /linker.ld
parent367e20fa0c6f15e60d943cf222d41414fffd2318 (diff)
Added scheduling info output
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld6
1 files changed, 3 insertions, 3 deletions
diff --git a/linker.ld b/linker.ld
index 2cacec0..17c951a 100644
--- a/linker.ld
+++ b/linker.ld
@@ -29,9 +29,9 @@ SECTIONS
.bss :
{
bss = .;
- *(.bss*)
- KEEP(*(.bss.mmheap))
- KEEP(*(.bss.heap))
+ *(.bss.*)
+ *(.bss.mmheap)
+ *(.bss.mmheap.base)
}
. = ALIGN(4096); /* align to page size */
__bss_end = .;