diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-01-23 14:56:05 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-07 21:45:53 +0100 |
commit | bcb129b3154ba743f8e52c21c331a0dfcaee7c38 (patch) | |
tree | b0e14312ce4ff29cbf0897b83390bf643bc16cc7 /hw/audio | |
parent | 7c28b925b7e176b4e44ed05d23cf883561000546 (diff) | |
download | qemu-bcb129b3154ba743f8e52c21c331a0dfcaee7c38.zip |
build: convert sound.mak to Kconfig
There is really nothing special in these devices; they are just
ISA devices. Instead of including them for each target,
set CONFIG_ISA_BUS to true, and make the devices default to present
whenever ISA is available. More conversion of ISA devices will
follow.
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 ISA_BUS' \
`grep -lw $i hw/*/Kconfig`
done < default-configs/sound.mak
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20190123065618.3520-32-yang.zhong@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/audio')
-rw-r--r-- | hw/audio/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hw/audio/Kconfig b/hw/audio/Kconfig index aa5c82bd0a..dedb5135b5 100644 --- a/hw/audio/Kconfig +++ b/hw/audio/Kconfig @@ -1,5 +1,7 @@ config SB16 bool + default y + depends on ISA_BUS config ES1370 bool @@ -13,12 +15,18 @@ config AC97 config ADLIB bool + default y + depends on ISA_BUS config GUS bool + default y + depends on ISA_BUS config CS4231A bool + default y + depends on ISA_BUS config HDA bool |