mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
meson.build: convert --with-default-devices to meson
Pass the boolean option directly instead of writing CONFIG_MINIKCONF_MODE to config-host.mak. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
f7f2d65135
commit
7bc3ca7fc0
3 changed files with 9 additions and 11 deletions
|
@ -1284,7 +1284,8 @@ foreach target : target_dirs
|
|||
output: config_devices_mak,
|
||||
depfile: config_devices_mak + '.d',
|
||||
capture: true,
|
||||
command: [minikconf, config_host['CONFIG_MINIKCONF_MODE'],
|
||||
command: [minikconf,
|
||||
get_option('default_devices') ? '--defconfig' : '--allnoconfig',
|
||||
config_devices_mak, '@DEPFILE@', '@INPUT@',
|
||||
host_kconfig, accel_kconfig])
|
||||
|
||||
|
@ -2478,7 +2479,7 @@ summary_info += {'capstone': capstone_opt == 'disabled' ? false : capst
|
|||
summary_info += {'libpmem support': config_host.has_key('CONFIG_LIBPMEM')}
|
||||
summary_info += {'libdaxctl support': config_host.has_key('CONFIG_LIBDAXCTL')}
|
||||
summary_info += {'libudev': libudev.found()}
|
||||
summary_info += {'default devices': config_host['CONFIG_MINIKCONF_MODE'] == '--defconfig'}
|
||||
summary_info += {'default devices': get_option('default_devices')}
|
||||
summary_info += {'plugin support': config_host.has_key('CONFIG_PLUGIN')}
|
||||
summary_info += {'fuzzing support': config_host.has_key('CONFIG_FUZZ')}
|
||||
if config_host.has_key('HAVE_GDB_BIN')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue