diff options
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/boot/bootloader/linker.ld | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/boot/bootloader/linker.ld b/arch/x86/boot/bootloader/linker.ld index 5e8dfd6..2a08a31 100644 --- a/arch/x86/boot/bootloader/linker.ld +++ b/arch/x86/boot/bootloader/linker.ld @@ -4,7 +4,6 @@ ENTRY(_start) SECTIONS { - /* BIOS likes always to load the boot sector to the address 0x7c00, - where it is sure will not be occupied by important routines. */ - . = 0x7c00; + /* Our bootloader loads kernel at 4 KiB */ + . = 0x1000; } |