blob: 1844671a9ebefd35bf72aa6f258c836e3d2d1560 [file] [log] [blame]
EMU_PLATFORM = qemu
QEMU_BIOS ?= /usr/share/qemu
QEMU_CPU_TYPE_x86 = qemu32,+nx,+pae
QEMU_X86_NO_REBOOT_y =
QEMU_X86_NO_REBOOT_ = -no-reboot
QEMU_FLAGS_x86 = -m 8 -cpu $(QEMU_CPU_TYPE_x86) \
-device isa-debug-exit,iobase=0xf4,iosize=0x04 \
$(QEMU_X86_NO_REBOOT_$(CONFIG_REBOOT)) \
-nographic -vga none -display none -net none \
-clock dynticks -no-acpi -balloon none \
-L $(QEMU_BIOS) -bios bios.bin \
-machine type=pc-0.14
QEMU_x86 = qemu-system-i386
DEBUG_SCRIPT = qemu.sh
debugserver: QEMU_EXTRA_FLAGS += -s -S
debugserver: run
export QEMU_FLAGS_x86 QEMU_x86 QEMU_CPU_TYPE_x86