From a91dd7628bcc9af0b9d4516ad6adc9817a750488 Mon Sep 17 00:00:00 2001 From: florian Date: Thu, 11 Aug 2011 11:18:44 +0000 Subject: [ep93xx] package more board specific modules: - keyboard matrix driver - SoC sound support based on patch by KanjiMonster git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27957 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/ep93xx/modules.mk | 70 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 target/linux/ep93xx/modules.mk (limited to 'target/linux/ep93xx/modules.mk') diff --git a/target/linux/ep93xx/modules.mk b/target/linux/ep93xx/modules.mk new file mode 100644 index 000000000..3fc691f4c --- /dev/null +++ b/target/linux/ep93xx/modules.mk @@ -0,0 +1,70 @@ +# +# Copyright (C) 2011 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +define KernelPackage/input-keyboard-ep93xx + SUBMENU:=$(OTHER_MENU) + TITLE:=EP93xx Matrix Keypad support + DEPENDS:=@TARGET_ep93xx + KCONFIG:= \ + CONFIG_KEYBOARD_EP93XX \ + CONFIG_INPUT_KEYBOARD=y + FILES:=$(LINUX_DIR)/drivers/input/keyboard/ep93xx_keypad.ko + AUTOLOAD:=$(call AutoLoad,62,ep93xx_keypad) + $(call AddDepends/input) +endef + +define KernelPackage/input-keyboard-ep93xx/description + EP93xx Matrix Keypad support +endef + +$(eval $(call KernelPackage,input-keyboard-ep93xx)) + + +define KernelPackage/sound-soc-ep93xx + SUBMENU:=$(SOUND_MENU) + TITLE:=EP93xx SoC sound support + DEPENDS:=@TARGET_ep93xx +kmod-sound-core +kmod-sound-soc-core + KCONFIG:=CONFIG_SND_EP93XX_SOC + FILES:=$(LINUX_DIR)/sound/soc/ep93xx/snd-soc-ep93xx.ko + AUTOLOAD:=$(call AutoLoad,56,snd-soc-ep93xx) +endef + +define KernelPackage/sound-soc-ep93xx/description + EP93xx SoC sound support +endef + +$(eval $(call KernelPackage,sound-soc-ep93xx)) + +define KernelPackage/sound-soc-ep93xx-ac97 + SUBMENU:=$(SOUND_MENU) + TITLE:=EP93xx SoC AC97 support + DEPENDS:=+kmod-sound-soc-ep93xx + KCONFIG:=CONFIG_SND_EP93XX_SOC_AC97 + FILES:=$(LINUX_DIR)/sound/soc/ep93xx/snd-soc-ep93xx-ac97.ko + AUTOLOAD:=$(call AutoLoad,57,snd-soc-ep93xx-ac97) +endef + +define KernelPackage/sound-soc-ep93xx-ac97/description + EP93xx SoC AC97 support +endef + +$(eval $(call KernelPackage,sound-soc-ep93xx-ac97)) + +define KernelPackage/sound-soc-ep93xx-simone + SUBMENU:=$(SOUND_MENU) + TITLE:=Sim.One EP93xx Soc sound support + DEPENDS:=+kmod-sound-soc-ep93xx +kmod-sound-soc-ep93xx-ac97 + KCONFIG:=CONFIG_SND_EP93XX_SOC_SIMONE + FILES:=$(LINUX_DIR)/sound/soc/ep93xx/snd-soc-simone.ko + AUTOLOAD:=$(call AutoLoad,57,snd-soc-ep93xx) +endef + +define KernelPackage/sound-soc-ep93xx-simone/description + SimpleMachines Sim.One sound support +endef + +$(eval $(call KernelPackage,sound-soc-ep93xx-simone)) -- cgit v1.2.3