From 83d6b76ed52fb602666bcb3e07c26442a654de56 Mon Sep 17 00:00:00 2001 From: Ain <41307858+nero@users.noreply.github.com> Date: Wed, 11 Sep 2019 19:32:40 +0000 Subject: [PATCH] Remove isacon debug and stdio serial, use terminal via curses instead --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4b70531..7f6bbd4 100644 --- a/Makefile +++ b/Makefile @@ -4,21 +4,18 @@ FD_SECTORS = 9 QEMU_ARCH = $(shell uname -m) QEMU = qemu-system-$(QEMU_ARCH) -QEMU_ARGS = -serial stdio ifdef KVM QEMU_ARGS += --enable-kvm endif ifdef DEBUG -QEMU_ARGS += -chardev file,path=debugcon.log,id=seabios -QEMU_ARGS += -device isa-debugcon,iobase=0x402,chardev=seabios QEMU_ARGS += -option-rom debug.rom DEBUGROM = debug.rom endif ifndef DISPLAY -QEMU_ARGS += --display none +QEMU_ARGS += --display curses endif .PHONY: default clean qemu-rom qemu-floppy