diff options
author | Aiden Gall <aiden@aidengall.xyz> | 2024-05-26 22:22:14 +0100 |
---|---|---|
committer | Aiden Gall <aiden@aidengall.xyz> | 2024-05-26 22:22:14 +0100 |
commit | ad8ab9b672d9f040f84b9933878b22fb291e41e7 (patch) | |
tree | 8bc093e045723f8f5c234150a407760189ce8e05 /link.ld | |
parent | 5ebc67833086eccb3c3b1708745c927d5bcfd811 (diff) |
Diffstat (limited to 'link.ld')
-rw-r--r-- | link.ld | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,15 +6,15 @@ KERNEL_VMA = 0x100000; SECTIONS { . = 0x7c00; - .text.boot : { - boot/boot.o (.text.boot) + .boot : { + boot/boot.o (.boot) _boot_end = .; } . = KERNEL_VMA; .text : AT(_boot_end) { - *(.text.startup) *(.text) + *(.text.*) *(.rodata*) . = ALIGN(0x1000); } |