Remove isacon debug and stdio serial, use terminal via curses instead

This commit is contained in:
Nero 2019-09-11 19:32:40 +00:00
parent 6cbcc3efca
commit 83d6b76ed5
1 changed files with 1 additions and 4 deletions

View File

@ -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