From 9b00f83ff1023d844c73391852ebe088d2144125 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sun, 7 Jan 2024 20:04:55 +0000 Subject: [PATCH] build: set default qemu display to SDL --- arch/x86_64/extra.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86_64/extra.mk b/arch/x86_64/extra.mk index 872c7fe..88e60cd 100644 --- a/arch/x86_64/extra.mk +++ b/arch/x86_64/extra.mk @@ -3,6 +3,7 @@ QEMU := qemu-system-x86_64 QEMU_MONITOR_FLAGS := -serial stdio QEMU_FLAGS := \ -m 10M \ + -display sdl \ -smp 4 -cpu qemu64,pdpe1gb \ -device ahci,id=ahci \ -drive id=hd0,file=$(BUILD_DIR)/disk.img,if=none -device ide-hd,drive=hd0,bus=ahci.0 \