diff options
author | Thomas Huth <thuth@redhat.com> | 2019-07-30 15:40:50 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2019-08-20 09:11:17 +0200 |
commit | f874d7293589ab42bf5da0c03c9048e5d11c292f (patch) | |
tree | 87da4e7fd2508305d13d161a9642df6068659169 /hw/core/Kconfig | |
parent | 5aa78a895781eb26de7204fff737599b689ac0b1 (diff) |
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>
Diffstat (limited to 'hw/core/Kconfig')
-rw-r--r-- | hw/core/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hw/core/Kconfig b/hw/core/Kconfig index fffb3d62b2..fdf03514d7 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 |