From 9a5bba2ba4776e45ead5fe34bd41e83de207df74 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Fri, 29 Dec 2023 16:13:54 +0100 Subject: [PATCH] Kernel: Enable MULTIBOOT_VIDEO_MODE by default This is required for pretty much every bare metal install and doesn't seem to have any effect on running in QEMU, so let's enable it by default. --- Kernel/Prekernel/multiboot.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Prekernel/multiboot.S b/Kernel/Prekernel/multiboot.S index e4cc68f21d..7d3f1d747d 100644 --- a/Kernel/Prekernel/multiboot.S +++ b/Kernel/Prekernel/multiboot.S @@ -3,7 +3,7 @@ .set MULTIBOOT_PAGE_ALIGN, 0x1 .set MULTIBOOT_MEMORY_INFO, 0x2 .set MULTIBOOT_VIDEO_MODE, 0x4 -.set multiboot_flags, MULTIBOOT_PAGE_ALIGN | MULTIBOOT_MEMORY_INFO +.set multiboot_flags, MULTIBOOT_PAGE_ALIGN | MULTIBOOT_MEMORY_INFO | MULTIBOOT_VIDEO_MODE .set multiboot_checksum, -(MULTIBOOT_MAGIC + multiboot_flags) .section .multiboot, "a"