From 58b2bf3128192e3b937d934a81dcdfc7dc199900 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Sun, 2 Jan 2022 17:28:09 -0800 Subject: Moved Postinit Information --- linker.ld | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'linker.ld') diff --git a/linker.ld b/linker.ld index 5c1b1a5..df0eb95 100644 --- a/linker.ld +++ b/linker.ld @@ -9,7 +9,7 @@ SECTIONS .text : { KEEP(*(.text.boot)) - *(.text) + *(.text*) } . = ALIGN(4096); /* align to page size */ __text_end = .; @@ -17,7 +17,7 @@ SECTIONS __data_start = .; .data : { - *(.data) + *(.data*) } . = ALIGN(4096); /* align to page size */ __data_end = .; @@ -26,7 +26,7 @@ SECTIONS .bss : { bss = .; - *(.bss) + *(.bss*) } . = ALIGN(4096); /* align to page size */ __bss_end = .; -- cgit v1.2.1