]> git.proxmox.com Git - mirror_qemu.git/commitdiff
hw/core: Add a config switch for the generic loader device
authorThomas Huth <thuth@redhat.com>
Tue, 30 Jul 2019 13:40:50 +0000 (15:40 +0200)
committerThomas Huth <thuth@redhat.com>
Tue, 20 Aug 2019 07:11:17 +0000 (09:11 +0200)
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é <philmd@redhat.com>
Message-Id: <20190817101931.28386-9-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
hw/core/Kconfig
hw/core/Makefile.objs

index fffb3d62b27b38db2e77be1859793ed45968a137..fdf03514d7d9de06ebca96d0d19869a2b383ecc7 100644 (file)
@@ -7,6 +7,10 @@ config PTIMER
 config FITLOADER
     bool
 
+config GENERIC_LOADER
+    bool
+    default y
+
 config OR_IRQ
     bool
 
index bb1afe422ab790be78645eb71214e4ca102635b0..b49f880a0c7b3b0153ff24ddde9e1ebf88a3ba30 100644 (file)
@@ -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