mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-31 05:51:53 -06:00
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é <philmd@redhat.com> Message-Id: <20190817101931.28386-9-thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
5aa78a8957
commit
f874d72935
2 changed files with 5 additions and 1 deletions
|
@ -7,6 +7,10 @@ config PTIMER
|
||||||
config FITLOADER
|
config FITLOADER
|
||||||
bool
|
bool
|
||||||
|
|
||||||
|
config GENERIC_LOADER
|
||||||
|
bool
|
||||||
|
default y
|
||||||
|
|
||||||
config OR_IRQ
|
config OR_IRQ
|
||||||
bool
|
bool
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ common-obj-$(CONFIG_REGISTER) += register.o
|
||||||
common-obj-$(CONFIG_OR_IRQ) += or-irq.o
|
common-obj-$(CONFIG_OR_IRQ) += or-irq.o
|
||||||
common-obj-$(CONFIG_SPLIT_IRQ) += split-irq.o
|
common-obj-$(CONFIG_SPLIT_IRQ) += split-irq.o
|
||||||
common-obj-$(CONFIG_PLATFORM_BUS) += platform-bus.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
|
common-obj-$(CONFIG_SOFTMMU) += null-machine.o
|
||||||
|
|
||||||
obj-$(CONFIG_SOFTMMU) += machine-qmp-cmds.o
|
obj-$(CONFIG_SOFTMMU) += machine-qmp-cmds.o
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue