forked from plbossart/kconfig
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
soundwire-defconfig: split codecs so soundwire-codecs-defconfig
This split allows for codecs to be selected only on the basis of machine drivers selected, or conversely to be all included for developers. kconfig-sof-default-nodev.sh now includes only the bare minimum for SOF. Signed-off-by: Pierre-Louis Bossart <[email protected]>
- Loading branch information
Showing
5 changed files
with
45 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
KCONFIG_DIR=$(dirname ${BASH_SOURCE[0]}) | ||
echo $KCONFIG_DIR | ||
|
||
. $KCONFIG_DIR/kconfig-lib.sh | ||
|
||
make defconfig | ||
$COMMAND .config \ | ||
$KCONFIG_DIR/base-defconfig \ | ||
$KCONFIG_DIR/devices-defconfig \ | ||
$KCONFIG_DIR/sof-defconfig \ | ||
$KCONFIG_DIR/amd-defconfig \ | ||
$KCONFIG_DIR/mach-driver-defconfig \ | ||
$KCONFIG_DIR/hdaudio-codecs-defconfig \ | ||
$KCONFIG_DIR/soundwire-defconfig \ | ||
$@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# add codecs so that they are compiled even if no machine | ||
# drivers are selected | ||
CONFIG_MFD_CS42L43_SDW=m | ||
CONFIG_SND_SOC_CS35L56_SDW=m | ||
CONFIG_SND_SOC_CS42L42_SDW=m | ||
CONFIG_SND_SOC_CS42L43_SDW=m | ||
CONFIG_SND_SOC_MAX98373_SDW=m | ||
|
||
CONFIG_SND_SOC_RT1017_SDCA_SDW=m | ||
CONFIG_SND_SOC_RT1308_SDW=m | ||
CONFIG_SND_SOC_RT1316_SDW=m | ||
CONFIG_SND_SOC_RT1318_SDW=m | ||
CONFIG_SND_SOC_RT5682_SDW=m | ||
CONFIG_SND_SOC_RT700_SDW=m | ||
CONFIG_SND_SOC_RT711_SDW=m | ||
CONFIG_SND_SOC_RT711_SDCA_SDW=m | ||
CONFIG_SND_SOC_RT712_SDCA_SDW=m | ||
CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW=m | ||
CONFIG_SND_SOC_RT722_SDCA_SDW=m | ||
CONFIG_SND_SOC_RT715_SDW=m | ||
CONFIG_SND_SOC_RT715_SDCA_SDW=m | ||
|
||
# SoundWire mockup codec | ||
CONFIG_SND_SOC_SDW_MOCKUP=m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,3 @@ | ||
CONFIG_SOUNDWIRE=m | ||
CONFIG_SOUNDWIRE_INTEL=m | ||
CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE=m | ||
|
||
# add codecs so that they are compiled even if no machine | ||
# drivers are selected | ||
CONFIG_SND_SOC_RT700_SDW=m | ||
CONFIG_SND_SOC_RT711_SDW=m | ||
CONFIG_SND_SOC_RT1308_SDW=m | ||
CONFIG_SND_SOC_RT715_SDW=m | ||
CONFIG_SND_SOC_RT711_SDCA_SDW=m | ||
CONFIG_SND_SOC_RT1316_SDW=m | ||
CONFIG_SND_SOC_RT1318_SDW=m | ||
CONFIG_SND_SOC_RT715_SDCA_SDW=m | ||
|
||
# SoundWire mockup codec | ||
CONFIG_SND_SOC_SDW_MOCKUP=m |