diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /target/linux/ep93xx/modules.mk | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'target/linux/ep93xx/modules.mk')
-rw-r--r-- | target/linux/ep93xx/modules.mk | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/target/linux/ep93xx/modules.mk b/target/linux/ep93xx/modules.mk new file mode 100644 index 0000000..2c62582 --- /dev/null +++ b/target/linux/ep93xx/modules.mk @@ -0,0 +1,104 @@ +# +# Copyright (C) 2011 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +define KernelPackage/fb-ep93xx + SUBMENU:=$(VIDEO_MENU) + TITLE:=EP93xx framebuffer support + DEPENDS:=@TARGET_ep93xx +kmod-fb +kmod-fb-cfb-fillrect \ + +kmod-fb-cfb-copyarea +kmod-fb-cfb-imgblt + KCONFIG:=CONFIG_FB_EP93XX + FILES:=$(LINUX_DIR)/drivers/video/ep93xx-fb.ko + AUTOLOAD:=$(call AutoLoad,51,ep93xx-fb) +endef + +define KernelPackage/fb-ep93xx/description + EP93xx framebuffer support +endef + +$(eval $(call KernelPackage,fb-ep93xx)) + +define KernelPackage/input-keyboard-ep93xx + SUBMENU:=$(OTHER_MENU) + TITLE:=EP93xx Matrix Keypad support + DEPENDS:=@TARGET_ep93xx +(LINUX_3_6||LINUX_3_7):kmod-input-matrixkmap + 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-soc-ac97 + KCONFIG:=CONFIG_SND_EP93XX_SOC + FILES:=$(LINUX_DIR)/sound/soc/ep93xx/snd-soc-ep93xx.ko + AUTOLOAD:=$(call AutoLoad,57,snd-soc-ep93xx) +endef + +define KernelPackage/sound-soc-ep93xx/description + EP93xx SoC sound support +endef + +$(eval $(call KernelPackage,sound-soc-ep93xx)) + +# Must be loaded prior to sound-soc-ac97 because it exports +# soc_ac97_ops +define KernelPackage/sound-soc-ep93xx-ac97 + SUBMENU:=$(SOUND_MENU) + TITLE:=EP93xx SoC AC97 support + DEPENDS:=@TARGET_ep93xx +kmod-sound-soc-ep93xx + KCONFIG:=CONFIG_SND_EP93XX_SOC_AC97 + FILES:=$(LINUX_DIR)/sound/soc/ep93xx/snd-soc-ep93xx-ac97.ko + AUTOLOAD:=$(call AutoLoad,56,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:=@TARGET_ep93xx +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,59,snd-soc-ep93xx) +endef + +define KernelPackage/sound-soc-ep93xx-simone/description + SimpleMachines Sim.One sound support +endef + +$(eval $(call KernelPackage,sound-soc-ep93xx-simone)) + +define KernelPackage/touchscreen-ep93xx + SUBMENU:=$(OTHER_MENU) + TITLE:=EP93xx input touchscreen support + DEPENDS:=@TARGET_ep93xx + KCONFIG:=CONFIG_TOUCHSCREEN_EP93XX + FILES:=$(LINUX_DIR)/drivers/input/touchscreen/ep93xx_ts.ko + AUTOLOAD:=$(call AutoLoad,51,ep93xx_ts) +endef + +define KernelPackage/touchscreen-ep93xx/description + EP93xx SoC input touchscreen support +endef + +$(eval $(call KernelPackage,touchscreen-ep93xx)) + |