aboutsummaryrefslogtreecommitdiff
path: root/util/qemu/Makefile.inc
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2020-10-25 14:41:40 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-11-04 09:39:50 +0000
commit9e20e2f1587b4bba2db41a8279e070eac6ddd92b (patch)
tree041c4899baacf52165dcdb8d8dee04900e17f8e3 /util/qemu/Makefile.inc
parenta08328ecffdf3eeb9aeec400361a48266bcf0bf2 (diff)
util/qemu: Add comprehensive default config for QEMU Q35
This config tries to mimic the actual devices of a mainboard with Intel's Q35 chipset. It provides a much better base to test coreboot (e.g. its allocator) and payloads. Change-Id: Id465016e37ee75628a55b9da68facb4ae0efe822 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46768 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'util/qemu/Makefile.inc')
-rw-r--r--util/qemu/Makefile.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/qemu/Makefile.inc b/util/qemu/Makefile.inc
index 3346349844..651ef21635 100644
--- a/util/qemu/Makefile.inc
+++ b/util/qemu/Makefile.inc
@@ -27,7 +27,9 @@
# $ make qemu QEMU_CFG_ARGS=
QEMU-$(CONFIG_BOARD_EMULATION_QEMU_X86_I440FX) ?= qemu-system-x86_64 -M pc
+
QEMU-$(CONFIG_BOARD_EMULATION_QEMU_X86_Q35) ?= qemu-system-x86_64 -M q35
+QEMU_CFG-$(CONFIG_BOARD_EMULATION_QEMU_X86_Q35) ?= util/qemu/q35-base.cfg
ifneq ($(QEMU-y),)