diff options
author | Zoltan HERPAI <wigyori@uid0.hu> | 2013-07-31 09:52:46 +0000 |
---|---|---|
committer | Zoltan HERPAI <wigyori@uid0.hu> | 2013-07-31 09:52:46 +0000 |
commit | fe27c7cf6f006393b8917023c30d754b02e33ba6 (patch) | |
tree | 2efd5dc1c1dbcb165007b82c0521c661fee7943c /target/linux/imx23/modules.mk | |
parent | 27b7bc42d6ed5de2c0805e0d026f7907a490921e (diff) | |
download | upstream-fe27c7cf6f006393b8917023c30d754b02e33ba6.tar.gz upstream-fe27c7cf6f006393b8917023c30d754b02e33ba6.tar.bz2 upstream-fe27c7cf6f006393b8917023c30d754b02e33ba6.zip |
imx23: add SoC sound support
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37622 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/imx23/modules.mk')
-rw-r--r-- | target/linux/imx23/modules.mk | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/target/linux/imx23/modules.mk b/target/linux/imx23/modules.mk index 2eb7f8afe8..5c9fd44ad9 100644 --- a/target/linux/imx23/modules.mk +++ b/target/linux/imx23/modules.mk @@ -79,3 +79,24 @@ endef $(eval $(call KernelPackage,usb-net-smsc95xx)) +define KernelPackage/sound-soc-imx23 + TITLE:=Freescale i.MX233 built-in SoC sound support + KCONFIG:= \ + CONFIG_SND_SOC_MXS_BUILTIN_CODEC \ + CONFIG_SND_MXS_SOC_BUILTIN + FILES:= \ + $(LINUX_DIR)/sound/soc/mxs/snd-soc-mxs-builtin-audio.ko \ + $(LINUX_DIR)/sound/soc/mxs/snd-soc-mxs-builtin-dai.ko \ + $(LINUX_DIR)/sound/soc/mxs/snd-soc-mxs-builtin-pcm.ko \ + $(LINUX_DIR)/sound/soc/codecs/snd-soc-mxs-builtin-codec.ko + AUTOLOAD:=$(call AutoLoad,65,snd-soc-mxs-builtin-pcm snd-soc-mxs-builtin-dai snd-soc-mxs-builtin-codec snd-soc-mxs-builtin-audio) + DEPENDS:=@TARGET_imx23 +kmod-sound-soc-core + $(call AddDepends/sound) +endef + +define KernelPackage/sound-soc-imx23/description + Kernel support for i.MX233 built-in SoC audio +endef + +$(eval $(call KernelPackage,sound-soc-imx23)) + |