diff options
author | Zoltan Herpai <wigyori@uid0.hu> | 2014-01-06 21:51:39 +0000 |
---|---|---|
committer | Zoltan Herpai <wigyori@uid0.hu> | 2014-01-06 21:51:39 +0000 |
commit | ba05c97e5e3ee3b0dd31b724c9053c06de99de34 (patch) | |
tree | 2a2165288eb7a080d2bcf1b27b9fe80d054b4c13 /target/linux/sunxi/modules.mk | |
parent | e0027ed4abef834297a54d95309688bc22f4d77c (diff) | |
download | upstream-ba05c97e5e3ee3b0dd31b724c9053c06de99de34.tar.gz upstream-ba05c97e5e3ee3b0dd31b724c9053c06de99de34.tar.bz2 upstream-ba05c97e5e3ee3b0dd31b724c9053c06de99de34.zip |
sunxi: various fixes - DT: update USB vbus from 3.3v to 5v - emac: add missing free_irq - DT: add emac aliases - DT: fix interrupts on A20 - modules: add watchdog module - don't compile in mac80211 - don't compile in usbnet
Thanks to Hans de Goede, Zalan Blenessy et al.
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
SVN-Revision: 39204
Diffstat (limited to 'target/linux/sunxi/modules.mk')
-rw-r--r-- | target/linux/sunxi/modules.mk | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/sunxi/modules.mk b/target/linux/sunxi/modules.mk index 9a4782ddf2..374cef2b17 100644 --- a/target/linux/sunxi/modules.mk +++ b/target/linux/sunxi/modules.mk @@ -66,3 +66,18 @@ endef $(eval $(call KernelPackage,sun4i-emac)) + +define KernelPackage/wdt-sunxi + SUBMENU:=$(OTHER_MENU) + TITLE:=AllWinner sunXi Watchdog timer + KCONFIG:=CONFIG_SUNXI_WATCHDOG + FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/sunxi_wdt.ko + AUTOLOAD:=$(call AutoLoad,51,sunxi_wdt) +endef + +define KernelPackage/wdt-sunxi/description + Kernel module for AllWinner sunXi watchdog timer. +endef + +$(eval $(call KernelPackage,wdt-sunxi)) + |