1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#
# Copyright (C) 2006-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define KernelPackage/leds-rb750
SUBMENU:=$(LEDS_MENU)
TITLE:=RouterBOARD 750 LED support
DEPENDS:=@TARGET_ar71xx
KCONFIG:=CONFIG_LEDS_RB750
FILES:=$(LINUX_DIR)/drivers/leds/leds-rb750.ko
AUTOLOAD:=$(call AutoLoad,60,leds-rb750)
endef
define KernelPackage/leds-rb750/description
Kernel module for the LEDs on the MikroTik RouterBOARD 750.
endef
$(eval $(call KernelPackage,leds-rb750))
define KernelPackage/leds-wndr3700-usb
SUBMENU:=$(LEDS_MENU)
TITLE:=WNDR3700 USB LED support
DEPENDS:=@TARGET_ar71xx
KCONFIG:=CONFIG_LEDS_WNDR3700_USB
FILES:=$(LINUX_DIR)/drivers/leds/leds-wndr3700-usb.ko
AUTOLOAD:=$(call AutoLoad,60,leds-wndr3700-usb)
endef
define KernelPackage/leds-wndr3700-usb/description
Kernel module for the USB LED on the NETGEAR WNDR3700 board.
endef
$(eval $(call KernelPackage,leds-wndr3700-usb))
define KernelPackage/spi-vsc7385
SUBMENU:=$(SPI_MENU)
TITLE:=Vitesse VSC7385 ethernet switch driver
DEPENDS:=@TARGET_ar71xx
KCONFIG:=CONFIG_SPI_VSC7385
FILES:=$(LINUX_DIR)/drivers/spi/spi-vsc7385.ko
AUTOLOAD:=$(call AutoLoad,93,spi-vsc7385)
endef
define KernelPackage/spi-vsc7385/description
This package contains the SPI driver for the Vitesse VSC7385 ethernet switch.
endef
$(eval $(call KernelPackage,spi-vsc7385))
define KernelPackage/wdt-ath79
SUBMENU:=$(OTHER_MENU)
TITLE:=Atheros AR7XXX/AR9XXX watchdog timer
DEPENDS:=@TARGET_ar71xx
KCONFIG:=CONFIG_ATH79_WDT
FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/ath79_wdt.ko
AUTOLOAD:=$(call AutoLoad,50,ath79_wdt)
endef
define KernelPackage/wdt-ath79/description
Kernel module for AR7XXX/AR9XXX watchdog timer.
endef
$(eval $(call KernelPackage,wdt-ath79))
|