aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-02 17:28:09 -0800
committerChristian Cunningham <cc@localhost>2022-01-02 17:28:09 -0800
commit58b2bf3128192e3b937d934a81dcdfc7dc199900 (patch)
tree327f8298060cd877706d3aa1a000f0230a43c975 /linker.ld
parent1d05efd6126377049f153c443fb2ca3ba8a2bb95 (diff)
Moved Postinit Information
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 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 = .;