Merge pull request #22 from ypid/add_QEMU_OPTIONS

Allow to configure QEMU_OPTIONS to disable -enable-kvm
pull/28/head
Hamish Coleman 7 years ago committed by GitHub
commit 0ac064a329

@ -10,6 +10,8 @@ all: list_laptops
.PHONY: all
QEMU_OPTIONS ?= -enable-kvm
GITVERSION = $(shell git describe --dirty --abbrev=6 ) ($(shell date +%Y%m%d))
BUILDINFO = $(GITVERSION) $(MAKECMDGOALS)
@ -273,10 +275,10 @@ endef
# simple testing of images in an emulator
%.iso.test: %.iso
qemu-system-x86_64 -enable-kvm -cdrom $<
qemu-system-x86_64 $(QEMU_OPTIONS) -cdrom $<
%.img.test: %.img
qemu-system-x86_64 -enable-kvm -hda $<
qemu-system-x86_64 $(QEMU_OPTIONS) -hda $<
mec-tools/Makefile:
git submodule update --init --remote

Loading…
Cancel
Save