aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-05 14:01:29 -0800
committerChristian Cunningham <cc@localhost>2022-01-05 14:01:29 -0800
commit3a8ed19bf83f11ff00c4904fab2cc083b7e33478 (patch)
tree9d9a6f92f9d74001e969d23ea79ad26f6227fea2 /linker.ld
parentf3ea4cd0c22f351d8dfffb0e937194c4b526b665 (diff)
Cleaned up/ Standardized
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld2
1 files changed, 2 insertions, 0 deletions
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 = .;