diff options
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); } |