diff options
author | Paolo Bonzini | 2021-10-07 15:08:11 +0200 |
---|---|---|
committer | Paolo Bonzini | 2021-10-14 09:50:56 +0200 |
commit | 65ce87d47669168593398a4a3a0c0b0494858c0d (patch) | |
tree | 82509c337c5cdf8b7559c227948e7fabeaeef610 /hw/mem | |
parent | configure: add command line options for audio drivers (diff) | |
download | qemu-65ce87d47669168593398a4a3a0c0b0494858c0d.tar.gz qemu-65ce87d47669168593398a4a3a0c0b0494858c0d.tar.xz qemu-65ce87d47669168593398a4a3a0c0b0494858c0d.zip |
kconfig: split CONFIG_SPARSE_MEM from fuzzing
Pass CONFIG_FUZZ via host_kconfig, and use it to select the
sparse-mem device.
Cc: Alexander Oleinik <alxndr@bu.edu>
Reviewed-by: Alexander Bulekov <alxndr@bu.edu>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Alexander Bulekov <alxndr@bu.edu>
Message-Id: <20211007130829.632254-1-pbonzini@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/mem')
-rw-r--r-- | hw/mem/Kconfig | 3 | ||||
-rw-r--r-- | hw/mem/meson.build | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/hw/mem/Kconfig b/hw/mem/Kconfig index 8b19fdc49f..03dbb3c7df 100644 --- a/hw/mem/Kconfig +++ b/hw/mem/Kconfig @@ -8,3 +8,6 @@ config MEM_DEVICE config NVDIMM bool select MEM_DEVICE + +config SPARSE_MEM + bool diff --git a/hw/mem/meson.build b/hw/mem/meson.build index 3c8fdef9f9..82f86d117e 100644 --- a/hw/mem/meson.build +++ b/hw/mem/meson.build @@ -6,4 +6,4 @@ mem_ss.add(when: 'CONFIG_NVDIMM', if_true: files('nvdimm.c')) softmmu_ss.add_all(when: 'CONFIG_MEM_DEVICE', if_true: mem_ss) -softmmu_ss.add(when: 'CONFIG_FUZZ', if_true: files('sparse-mem.c')) +softmmu_ss.add(when: 'CONFIG_SPARSE_MEM', if_true: files('sparse-mem.c')) |