diff options
author | Andre Heider <a.heider@gmail.com> | 2019-10-08 21:15:44 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2020-10-11 17:45:02 +0200 |
commit | 111895aa19eb6e4abf37c7a0882d82b849d52f50 (patch) | |
tree | ca11e3c489fa016920cf0d8d7ddc66c4d829a18c | |
parent | 447fe1454ec3948ffec2f2631e259a088544c4fe (diff) | |
download | upstream-111895aa19eb6e4abf37c7a0882d82b849d52f50.tar.gz upstream-111895aa19eb6e4abf37c7a0882d82b849d52f50.tar.bz2 upstream-111895aa19eb6e4abf37c7a0882d82b849d52f50.zip |
kernel: add a kmod package for the SoC S/PDIF codec
Size of the modules for a Cortex A7 build:
43920 linux-5.4.66/sound/soc/codecs/snd-soc-spdif-rx.ko
44044 linux-5.4.66/sound/soc/codecs/snd-soc-spdif-tx.ko
Signed-off-by: Andre Heider <a.heider@gmail.com>
-rw-r--r-- | package/kernel/linux/modules/sound.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/kernel/linux/modules/sound.mk b/package/kernel/linux/modules/sound.mk index faee6043dc..692ede30ee 100644 --- a/package/kernel/linux/modules/sound.mk +++ b/package/kernel/linux/modules/sound.mk @@ -254,6 +254,20 @@ endef $(eval $(call KernelPackage,sound-soc-imx-sgtl5000)) +define KernelPackage/sound-soc-spdif + TITLE:=SoC S/PDIF codec support + KCONFIG:=CONFIG_SND_SOC_SPDIF + FILES:= \ + $(LINUX_DIR)/sound/soc/codecs/snd-soc-spdif-tx.ko \ + $(LINUX_DIR)/sound/soc/codecs/snd-soc-spdif-rx.ko + DEPENDS:=+kmod-sound-soc-core + AUTOLOAD:=$(call AutoProbe,snd-soc-spdif-tx snd-soc-spdif-rx) + $(call AddDepends/sound) +endef + +$(eval $(call KernelPackage,sound-soc-spdif)) + + define KernelPackage/pcspkr DEPENDS:=@TARGET_x86 +kmod-input-core TITLE:=PC speaker support |