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

View File

@ -4,21 +4,18 @@ FD_SECTORS = 9
QEMU_ARCH = $(shell uname -m) QEMU_ARCH = $(shell uname -m)
QEMU = qemu-system-$(QEMU_ARCH) QEMU = qemu-system-$(QEMU_ARCH)
QEMU_ARGS = -serial stdio
ifdef KVM ifdef KVM
QEMU_ARGS += --enable-kvm QEMU_ARGS += --enable-kvm
endif endif
ifdef DEBUG 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 QEMU_ARGS += -option-rom debug.rom
DEBUGROM = debug.rom DEBUGROM = debug.rom
endif endif
ifndef DISPLAY ifndef DISPLAY
QEMU_ARGS += --display none QEMU_ARGS += --display curses
endif endif
.PHONY: default clean qemu-rom qemu-floppy .PHONY: default clean qemu-rom qemu-floppy