diff options
Diffstat (limited to '')
-rw-r--r-- | kernel/arch/i686/linker.ld (renamed from kernel/linker.ld) | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/kernel/linker.ld b/kernel/arch/i686/linker.ld index 541975e..ae48afb 100644 --- a/kernel/linker.ld +++ b/kernel/arch/i686/linker.ld @@ -6,13 +6,11 @@ SECTIONS { kernel_start = .; - .multiboot.data : { - *(.multiboot.data) - } - - .multiboot.text : { - *(.multiboot.text) - } + .bootstrap : { + *(.bootstrap.data) + *(.bootstrap.stack) + *(.bootstrap.text) + } . += 0xC0000000; @@ -32,7 +30,7 @@ SECTIONS { { *(COMMON) *(.bss) - *(.bootstrap_stack) + *(.stack) } kernel_end = .; |