diff options
author | wigyori <wigyori@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2014-01-06 21:51:39 +0000 |
---|---|---|
committer | wigyori <wigyori@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2014-01-06 21:51:39 +0000 |
commit | 38414a5638c18879203a254ce106eeaf964d53f9 (patch) | |
tree | 216cb49db75526a0842a9af42d82830dd0024f2a /target/linux/sunxi/modules.mk | |
parent | 4953a60d93784d211cacca29daec295ba9a8c665 (diff) |
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>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39204 3c298f89-4303-0410-b956-a3cf2f4a3e73
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)) + |