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>
This commit is contained in:
Paolo Bonzini 2019-01-23 14:56:05 +08:00
parent 7c28b925b7
commit bcb129b315
5 changed files with 11 additions and 7 deletions

View File

@ -2,7 +2,7 @@
CONFIG_PCI=y
CONFIG_PCI_DEVICES=y
include sound.mak
CONFIG_ISA_BUS=y
include usb.mak
include hyperv.mak
CONFIG_TEST_DEVICES=y

View File

@ -1,7 +1,7 @@
# Common mips*-softmmu CONFIG defines
include sound.mak
include usb.mak
CONFIG_ISA_BUS=y
CONFIG_PCI=y
CONFIG_PCI_DEVICES=y
CONFIG_ESP=y

View File

@ -1,7 +1,7 @@
# Default configuration for ppc-softmmu
include sound.mak
include usb.mak
CONFIG_ISA_BUS=y
CONFIG_PCI=y
CONFIG_PCI_DEVICES=y
CONFIG_TEST_DEVICES=y

View File

@ -1,4 +0,0 @@
CONFIG_SB16=y
CONFIG_ADLIB=y
CONFIG_GUS=y
CONFIG_CS4231A=y

View File

@ -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