From 676fd7aeb5ee4c685914db0acb54affa5b042e74 Mon Sep 17 00:00:00 2001 From: Yifan Wu Date: Mon, 13 Nov 2023 23:32:35 +0800 Subject: [PATCH] fix issue #130 --- os/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/os/Makefile b/os/Makefile index b49d806d8..5956c0e4a 100644 --- a/os/Makefile +++ b/os/Makefile @@ -74,8 +74,9 @@ disasm-vim: kernel run: run-inner QEMU_ARGS := -machine virt \ - -nographic \ -bios $(BOOTLOADER) \ + -serial stdio \ + $(GUI_OPTION) \ -device loader,file=$(KERNEL_BIN),addr=$(KERNEL_ENTRY_PA) \ -drive file=$(FS_IMG),if=none,format=raw,id=x0 \ -device virtio-blk-device,drive=x0 \