From: Thomas Huth Date: Tue, 30 Jul 2019 13:40:50 +0000 (+0200) Subject: hw/core: Add a config switch for the generic loader device X-Git-Tag: v4.2.0-rc0~225^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f874d7293589ab42bf5da0c03c9048e5d11c292f;p=thirdparty%2Fqemu.git hw/core: Add a config switch for the generic loader device The generic loader device is completely optional. Let's add a proper config switch for it so that people can disable it if they don't need it and want to create a minimalistic QEMU binary. Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20190817101931.28386-9-thuth@redhat.com> Signed-off-by: Thomas Huth --- diff --git a/hw/core/Kconfig b/hw/core/Kconfig index fffb3d62b27..fdf03514d7d 100644 --- a/hw/core/Kconfig +++ b/hw/core/Kconfig @@ -7,6 +7,10 @@ config PTIMER config FITLOADER bool +config GENERIC_LOADER + bool + default y + config OR_IRQ bool diff --git a/hw/core/Makefile.objs b/hw/core/Makefile.objs index bb1afe422ab..b49f880a0c7 100644 --- a/hw/core/Makefile.objs +++ b/hw/core/Makefile.objs @@ -21,7 +21,7 @@ common-obj-$(CONFIG_REGISTER) += register.o common-obj-$(CONFIG_OR_IRQ) += or-irq.o common-obj-$(CONFIG_SPLIT_IRQ) += split-irq.o common-obj-$(CONFIG_PLATFORM_BUS) += platform-bus.o -common-obj-$(CONFIG_SOFTMMU) += generic-loader.o +common-obj-$(CONFIG_GENERIC_LOADER) += generic-loader.o common-obj-$(CONFIG_SOFTMMU) += null-machine.o obj-$(CONFIG_SOFTMMU) += machine-qmp-cmds.o