Remove isacon debug and stdio serial, use terminal via curses instead
This commit is contained in:
parent
6cbcc3efca
commit
83d6b76ed5
5
Makefile
5
Makefile
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user