diff options
author | Claudio Mignanti <c.mignanti@gmail.com> | 2010-06-18 22:12:33 +0000 |
---|---|---|
committer | Claudio Mignanti <c.mignanti@gmail.com> | 2010-06-18 22:12:33 +0000 |
commit | 4bb7ab3057cc4d19924034f92a0a22decba04796 (patch) | |
tree | 3904b431b529f5208069ad9dd61d448746234f67 /target/linux/at91/modules.mk | |
parent | 7bff9c01010f5c8ba3147da4feffff477eccb164 (diff) | |
download | upstream-4bb7ab3057cc4d19924034f92a0a22decba04796.tar.gz upstream-4bb7ab3057cc4d19924034f92a0a22decba04796.tar.bz2 upstream-4bb7ab3057cc4d19924034f92a0a22decba04796.zip |
revamp target: add support for netusg20 board
SVN-Revision: 21838
Diffstat (limited to 'target/linux/at91/modules.mk')
-rw-r--r-- | target/linux/at91/modules.mk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/target/linux/at91/modules.mk b/target/linux/at91/modules.mk index 48cdef199a..36c7b96560 100644 --- a/target/linux/at91/modules.mk +++ b/target/linux/at91/modules.mk @@ -19,3 +19,19 @@ define KernelPackage/mmc-at91/description endef $(eval $(call KernelPackage,mmc-at91)) + +define KernelPackage/pwm-atmel + SUBMENU:=$(OTHER_MENU) + TITLE:=PWM on atmel SoC + DEPENDS:=@TARGET_at91 + KCONFIG:=CONFIG_GENERIC_PWM \ + CONFIG_ATMEL_PWM + FILES:=$(LINUX_DIR)/drivers/pwm/atmel-pwm.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,51,atmel-pwm) +endef + +define KernelPackage/pwm-atmel/description + Kernel module to use the PWM channel on ATMEL SoC +endef + +$(eval $(call KernelPackage,pwm-atmel)) |