[PATCH] meson.build: convert --with-default-devices to meson

Paolo Bonzini posted 1 patch 3 years, 5 months ago
Failed in applying to current master (apply log)
configure         | 12 ++++--------
meson.build       |  5 +++--
meson_options.txt |  2 ++
3 files changed, 9 insertions(+), 10 deletions(-)
[PATCH] meson.build: convert --with-default-devices to meson
Posted by Paolo Bonzini 3 years, 5 months ago
Pass the boolean option directly instead of writing
CONFIG_MINIKCONF_MODE to config-host.mak.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 configure         | 12 ++++--------
 meson.build       |  5 +++--
 meson_options.txt |  2 ++
 3 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/configure b/configure
index a3d13538c0..5e51279986 100755
--- a/configure
+++ b/configure
@@ -432,7 +432,7 @@ sheepdog="no"
 libxml2=""
 debug_mutex="no"
 libpmem=""
-default_devices="yes"
+default_devices="true"
 plugins="no"
 fuzzing="no"
 rng_none="no"
@@ -929,9 +929,9 @@ for opt do
   ;;
   --with-trace-file=*) trace_file="$optarg"
   ;;
-  --with-default-devices) default_devices="yes"
+  --with-default-devices) default_devices="true"
   ;;
-  --without-default-devices) default_devices="no"
+  --without-default-devices) default_devices="false"
   ;;
   --enable-gprof) gprof="yes"
   ;;
@@ -5544,11 +5544,6 @@ echo "GIT_UPDATE=$git_update" >> $config_host_mak
 
 echo "ARCH=$ARCH" >> $config_host_mak
 
-if test "$default_devices" = "yes" ; then
-  echo "CONFIG_MINIKCONF_MODE=--defconfig" >> $config_host_mak
-else
-  echo "CONFIG_MINIKCONF_MODE=--allnoconfig" >> $config_host_mak
-fi
 if test "$debug_tcg" = "yes" ; then
   echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
 fi
@@ -6527,6 +6522,7 @@ NINJA=$ninja $meson setup \
         -Dattr=$attr \
         -Ddocs=$docs -Dsphinx_build=$sphinx_build -Dinstall_blobs=$blobs \
         -Dvhost_user_blk_server=$vhost_user_blk_server \
+        -Ddefault_devices=$default_devices \
         $cross_arg \
         "$PWD" "$source_path"
 
diff --git a/meson.build b/meson.build
index e968bb5ada..f273eb28ba 100644
--- a/meson.build
+++ b/meson.build
@@ -1206,7 +1206,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])
 
@@ -2390,7 +2391,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')
diff --git a/meson_options.txt b/meson_options.txt
index 2f0ca97329..7d57b744ac 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -7,6 +7,8 @@ option('qemu_firmwarepath', type : 'string', value : '',
 option('sphinx_build', type : 'string', value : '',
        description: 'Use specified sphinx-build [$sphinx_build] for building document (default to be empty)')
 
+option('default_devices', type : 'boolean', value : true,
+       description: 'Include a default selection of devices in emulators')
 option('docs', type : 'feature', value : 'auto',
        description: 'Documentations build support')
 option('gettext', type : 'boolean', value : true,
-- 
2.28.0


Re: [PATCH] meson.build: convert --with-default-devices to meson
Posted by Marc-André Lureau 3 years, 5 months ago
On Fri, Nov 20, 2020 at 11:39 AM Paolo Bonzini <pbonzini@redhat.com> wrote:

> Pass the boolean option directly instead of writing
> CONFIG_MINIKCONF_MODE to config-host.mak.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  configure         | 12 ++++--------
>  meson.build       |  5 +++--
>  meson_options.txt |  2 ++
>  3 files changed, 9 insertions(+), 10 deletions(-)
>
> diff --git a/configure b/configure
> index a3d13538c0..5e51279986 100755
> --- a/configure
> +++ b/configure
> @@ -432,7 +432,7 @@ sheepdog="no"
>  libxml2=""
>  debug_mutex="no"
>  libpmem=""
> -default_devices="yes"
> +default_devices="true"
>  plugins="no"
>  fuzzing="no"
>  rng_none="no"
> @@ -929,9 +929,9 @@ for opt do
>    ;;
>    --with-trace-file=*) trace_file="$optarg"
>    ;;
> -  --with-default-devices) default_devices="yes"
> +  --with-default-devices) default_devices="true"
>    ;;
> -  --without-default-devices) default_devices="no"
> +  --without-default-devices) default_devices="false"
>    ;;
>    --enable-gprof) gprof="yes"
>    ;;
> @@ -5544,11 +5544,6 @@ echo "GIT_UPDATE=$git_update" >> $config_host_mak
>
>  echo "ARCH=$ARCH" >> $config_host_mak
>
> -if test "$default_devices" = "yes" ; then
> -  echo "CONFIG_MINIKCONF_MODE=--defconfig" >> $config_host_mak
> -else
> -  echo "CONFIG_MINIKCONF_MODE=--allnoconfig" >> $config_host_mak
> -fi
>  if test "$debug_tcg" = "yes" ; then
>    echo "CONFIG_DEBUG_TCG=y" >> $config_host_mak
>  fi
> @@ -6527,6 +6522,7 @@ NINJA=$ninja $meson setup \
>          -Dattr=$attr \
>          -Ddocs=$docs -Dsphinx_build=$sphinx_build -Dinstall_blobs=$blobs \
>          -Dvhost_user_blk_server=$vhost_user_blk_server \
> +        -Ddefault_devices=$default_devices \
>          $cross_arg \
>          "$PWD" "$source_path"
>
> diff --git a/meson.build b/meson.build
> index e968bb5ada..f273eb28ba 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -1206,7 +1206,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])
>
> @@ -2390,7 +2391,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')
> diff --git a/meson_options.txt b/meson_options.txt
> index 2f0ca97329..7d57b744ac 100644
> --- a/meson_options.txt
> +++ b/meson_options.txt
> @@ -7,6 +7,8 @@ option('qemu_firmwarepath', type : 'string', value : '',
>  option('sphinx_build', type : 'string', value : '',
>         description: 'Use specified sphinx-build [$sphinx_build] for
> building document (default to be empty)')
>
> +option('default_devices', type : 'boolean', value : true,
> +       description: 'Include a default selection of devices in emulators')
>  option('docs', type : 'feature', value : 'auto',
>         description: 'Documentations build support')
>  option('gettext', type : 'boolean', value : true,
> --
> 2.28.0
>
>
>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>

-- 
Marc-André Lureau
Re: [PATCH] meson.build: convert --with-default-devices to meson
Posted by Richard Henderson 3 years, 5 months ago
On 11/19/20 11:38 PM, Paolo Bonzini wrote:
> Pass the boolean option directly instead of writing
> CONFIG_MINIKCONF_MODE to config-host.mak.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  configure         | 12 ++++--------
>  meson.build       |  5 +++--
>  meson_options.txt |  2 ++
>  3 files changed, 9 insertions(+), 10 deletions(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~