diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-01-23 14:56:06 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-07 21:45:53 +0100 |
commit | d6e9c470fc91f75db1785f17a9d3567d5a27953d (patch) | |
tree | 19088ad8b5cb7d4a162115674222367fb6df68b6 /default-configs/sparc64-softmmu.mak | |
parent | bcb129b3154ba743f8e52c21c331a0dfcaee7c38 (diff) | |
download | qemu-d6e9c470fc91f75db1785f17a9d3567d5a27953d.zip |
build: convert usb.mak to Kconfig
Instead of including the same list of devices for each target,
let the host controllers select CONFIG_USB and make the devices
default to present whenever USB is available.
Done with the following script:
while read i; do
i=${i%=y}; i=${i#CONFIG_}
sed -i -e'/^config '$i'$/!b' -en \
-e'a\' -e' default y\' -e' depends on USB' \
`grep -lw $i hw/*/Kconfig`
done < default-configs/usb.mak
followed by adding "select USB" on the host controllers.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Yang Zhong <yang.zhong@intel.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20190123065618.3520-33-yang.zhong@intel.com>
Acked-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'default-configs/sparc64-softmmu.mak')
-rw-r--r-- | default-configs/sparc64-softmmu.mak | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/default-configs/sparc64-softmmu.mak b/default-configs/sparc64-softmmu.mak index cb70798388..24d738991a 100644 --- a/default-configs/sparc64-softmmu.mak +++ b/default-configs/sparc64-softmmu.mak @@ -1,6 +1,5 @@ # Default configuration for sparc64-softmmu -include usb.mak CONFIG_PCI=y CONFIG_PCI_DEVICES=y CONFIG_M48T59=y |