diff options
author | Aiden Gall <aiden@aidengall.xyz> | 2024-05-15 00:06:13 +0100 |
---|---|---|
committer | Aiden Gall <aiden@aidengall.xyz> | 2024-05-15 00:06:13 +0100 |
commit | eb31e12cc10f002251b1d384c53889d9c4ffedd2 (patch) | |
tree | 114cf80429bc6b029fc9affb30937082f2b308d2 | |
parent | 882626965d7778cecd7ec0329e7f4a19f97d8218 (diff) |
minor linker script change
-rw-r--r-- | link.ld | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -11,7 +11,8 @@ SECTIONS { _boot_end = .; } - .text KERNEL_VMA : AT(_boot_end) { + . = KERNEL_VMA; + .text : AT(_boot_end) { *(.text.startup) *(.text) *(.rodata*) |