From 3a8ed19bf83f11ff00c4904fab2cc083b7e33478 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Wed, 5 Jan 2022 14:01:29 -0800 Subject: Cleaned up/ Standardized --- linker.ld | 2 ++ 1 file changed, 2 insertions(+) (limited to 'linker.ld') diff --git a/linker.ld b/linker.ld index 33666f2..58da7ca 100644 --- a/linker.ld +++ b/linker.ld @@ -9,6 +9,7 @@ SECTIONS .text : { KEEP(*(.text.boot)) + KEEP(*(.text.kernel)) *(.text*) } . = ALIGN(4096); /* align to page size */ @@ -29,6 +30,7 @@ SECTIONS { bss = .; *(.bss*) + KEEP(*(.bss.heap)) } . = ALIGN(4096); /* align to page size */ __bss_end = .; -- cgit v1.2.1