diff options
author | wigyori <wigyori@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-07-31 09:52:46 +0000 |
---|---|---|
committer | wigyori <wigyori@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-07-31 09:52:46 +0000 |
commit | 9a5db48d7e7c98d61eec43bd21f362de9916db45 (patch) | |
tree | 2efd5dc1c1dbcb165007b82c0521c661fee7943c /target/linux/imx23/modules.mk | |
parent | 8c212f75d1c1e709cce8431c8f116a5ecaf8db9a (diff) |
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)) + |