summaryrefslogtreecommitdiff
path: root/package/kernel/modules/sound.mk
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2010-03-11 09:12:44 +0000
committerNicolas Thill <nico@openwrt.org>2010-03-11 09:12:44 +0000
commit5601865155862fc12812a04bf4e0440e4bc01716 (patch)
treeef1ce39303a49ee78ee59e5729eca66e4f1b17ae /package/kernel/modules/sound.mk
parent256f938e5a93c219ee8301bf6da615a37b50bfc6 (diff)
downloadmtk-20170518-5601865155862fc12812a04bf4e0440e4bc01716.zip
mtk-20170518-5601865155862fc12812a04bf4e0440e4bc01716.tar.gz
mtk-20170518-5601865155862fc12812a04bf4e0440e4bc01716.tar.bz2
kernel: add missing CONFIG_SND_SOC_ALL_CODECS to kmod-sound-soc-core KCONFIG
SVN-Revision: 20133
Diffstat (limited to 'package/kernel/modules/sound.mk')
-rw-r--r--package/kernel/modules/sound.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/package/kernel/modules/sound.mk b/package/kernel/modules/sound.mk
index 1f2cc4e..e4a4c73 100644
--- a/package/kernel/modules/sound.mk
+++ b/package/kernel/modules/sound.mk
@@ -133,10 +133,13 @@ endef
$(eval $(call KernelPackage,sound-cs5535audio))
+
define KernelPackage/sound-soc-core
$(call KernelPackage/sound/Depends)
TITLE:=SoC sound support
- KCONFIG:=CONFIG_SND_SOC
+ KCONFIG:= \
+ CONFIG_SND_SOC \
+ CONFIG_SND_SOC_ALL_CODECS=n
FILES:=$(LINUX_DIR)/sound/soc/snd-soc-core.ko
AUTOLOAD:=$(call AutoLoad,35, snd-soc-core)
endef