While the default config works well enough it does end up enabling a lot of stuff. For more minimal builds we can pass a slimmed down list of devices and let Kconfig work out what we want. For example:
../../configure --without-default-features \ --target-list=arm-softmmu,aarch64-softmmu \ --with-devices-aarch64=(pwd)/../../configs/aarch64-softmmu/aarch64-softmmu-64bit-only.mak will override the aarch64-softmmu default devices to one of our own choosing. Signed-off-by: Alex Bennée <alex.ben...@linaro.org> Cc: Philippe Mathieu-Daudé <phi...@redhat.com> Cc: Paolo Bonzini <pbonz...@redhat.com> --- configure | 16 ++++++++++++++++ .../aarch64-softmmu-64bit-only.mak | 10 ++++++++++ meson.build | 3 ++- 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 configs/aarch64-softmmu/aarch64-softmmu-64bit-only.mak diff --git a/configure b/configure index 90c0807347..5acb8b2ed5 100755 --- a/configure +++ b/configure @@ -921,6 +921,12 @@ for opt do ;; --without-default-devices) default_devices="false" ;; + --with-devices-*[!a-zA-Z0-9_-]*=*) error_exit "Passed bad --with-devices-cc-FOO option" + ;; + --with-devices-*) device_arch=${opt#--with-devices-}; device_arch=${device_arch%%=*} + device_archs="$device_archs $device_arch" + eval "devices_${device_arch}=\$optarg" + ;; --without-default-features) # processed above ;; --enable-gprof) gprof="yes" @@ -1767,6 +1773,7 @@ Advanced options (experts only): --without-default-devices do not include any device that is not needed to start the emulator (only use if you are including desired devices in default-configs/devices/) + --with-devices-ARCH=PATH override default-configs/devices with your own file --enable-debug enable common debug build options --enable-sanitizers enable default sanitizers --enable-tsan enable thread sanitizer @@ -6378,6 +6385,15 @@ if test "$skip_meson" = no; then echo "# Automatically generated by configure - do not modify" > $cross echo "[properties]" >> $cross + + # unroll any custom device configs + if test -n "$device_archs"; then + for a in $device_archs; do + eval "c=\$devices_${a}" + echo "${a}-softmmu = [ '$c' ]" >> $cross + done + fi + test -z "$cxx" && echo "link_language = 'c'" >> $cross echo "[built-in options]" >> $cross echo "c_args = [${CFLAGS:+$(meson_quote $CFLAGS)}]" >> $cross diff --git a/configs/aarch64-softmmu/aarch64-softmmu-64bit-only.mak b/configs/aarch64-softmmu/aarch64-softmmu-64bit-only.mak new file mode 100644 index 0000000000..3626de9e3c --- /dev/null +++ b/configs/aarch64-softmmu/aarch64-softmmu-64bit-only.mak @@ -0,0 +1,10 @@ +# +# A version of the config that only supports 64bits and their devices. +# This doesn't quite eliminate all 32 bit devices as some boards like +# "virt" support both. +# + +CONFIG_ARM_VIRT=y +CONFIG_XLNX_ZYNQMP_ARM=y +CONFIG_XLNX_VERSAL=y +CONFIG_SBSA_REF=y diff --git a/meson.build b/meson.build index 3f065f53f2..656ebde513 100644 --- a/meson.build +++ b/meson.build @@ -1350,9 +1350,10 @@ foreach target : target_dirs configuration: config_target_data)} if target.endswith('-softmmu') + config_input = meson.get_external_property(target, 'default-configs/devices' / target + '.mak') config_devices_mak = target + '-config-devices.mak' config_devices_mak = configure_file( - input: ['default-configs/devices' / target + '.mak', 'Kconfig'], + input: [config_input, 'Kconfig'], output: config_devices_mak, depfile: config_devices_mak + '.d', capture: true, -- 2.20.1