summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAiden Gall <aiden@aidengall.xyz>2024-05-15 00:06:13 +0100
committerAiden Gall <aiden@aidengall.xyz>2024-05-15 00:06:13 +0100
commiteb31e12cc10f002251b1d384c53889d9c4ffedd2 (patch)
tree114cf80429bc6b029fc9affb30937082f2b308d2
parent882626965d7778cecd7ec0329e7f4a19f97d8218 (diff)
minor linker script change
-rw-r--r--link.ld3
1 files changed, 2 insertions, 1 deletions
diff --git a/link.ld b/link.ld
index 33b6066..11536c8 100644
--- a/link.ld
+++ b/link.ld
@@ -11,7 +11,8 @@ SECTIONS {
_boot_end = .;
}
- .text KERNEL_VMA : AT(_boot_end) {
+ . = KERNEL_VMA;
+ .text : AT(_boot_end) {
*(.text.startup)
*(.text)
*(.rodata*)