aboutsummaryrefslogtreecommitdiff
path: root/src/boot.S
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2021-03-07 21:44:12 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2021-03-07 21:44:12 +0200
commit361f02166cc939879b58328cbf5e75a050c93e1d (patch)
tree09c6f0a2be4182d78d9fbbe6c4ffe56838bd1642 /src/boot.S
parentscheduler: fix task switching (diff)
downloadkernel.cpp-361f02166cc939879b58328cbf5e75a050c93e1d.tar.xz
Move multiboot header to its own section
Diffstat (limited to 'src/boot.S')
-rw-r--r--src/boot.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot.S b/src/boot.S
index fff1644..b17aea3 100644
--- a/src/boot.S
+++ b/src/boot.S
@@ -9,7 +9,7 @@
.set MULTIBOOT_ARCHITECTURE, 0 # protected mode i386
.set MULTIBOOT_HEADER_TAG_END, 0
-.section .multiboot
+.section .multiboot.header, "a"
.align 8
header_start:
.int MULTIBOOT_HEADER_MAGIC
@@ -40,7 +40,7 @@ stack_top:
The linker script specifies _start as the entry point to the kernel and the
bootloader will jump to this position once the kernel has been loaded.
*/
-.section .text
+.section .multiboot.text, "ax"
.extern kernel_constructors
.extern kernel_main
.global _start