2006-10-19 02:05:17 +00:00
|
|
|
#
|
2010-04-24 13:34:51 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-10-17 13:18:01 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2007-09-16 17:45:15 +00:00
|
|
|
OTHER_MENU:=Other modules
|
2006-10-17 13:18:01 +00:00
|
|
|
|
2010-06-26 20:43:41 +00:00
|
|
|
WATCHDOG_DIR:=watchdog
|
2008-11-20 23:01:07 +00:00
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
|
|
|
|
define KernelPackage/bluetooth
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2006-10-19 04:35:29 +00:00
|
|
|
TITLE:=Bluetooth support
|
2010-04-24 11:01:06 +00:00
|
|
|
DEPENDS:=@USB_SUPPORT +kmod-usb-core
|
2009-04-22 13:11:16 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_BLUEZ \
|
|
|
|
CONFIG_BLUEZ_L2CAP \
|
|
|
|
CONFIG_BLUEZ_SCO \
|
|
|
|
CONFIG_BLUEZ_RFCOMM \
|
|
|
|
CONFIG_BLUEZ_BNEP \
|
|
|
|
CONFIG_BLUEZ_HCIUART \
|
|
|
|
CONFIG_BLUEZ_HCIUSB \
|
|
|
|
CONFIG_BLUEZ_HIDP \
|
|
|
|
CONFIG_BT \
|
|
|
|
CONFIG_BT_L2CAP \
|
|
|
|
CONFIG_BT_SCO \
|
|
|
|
CONFIG_BT_RFCOMM \
|
|
|
|
CONFIG_BT_BNEP \
|
|
|
|
CONFIG_BT_HCIBTUSB \
|
2007-09-09 20:37:50 +00:00
|
|
|
CONFIG_BT_HCIUSB \
|
2009-04-20 12:27:34 +00:00
|
|
|
CONFIG_BT_HCIUART \
|
|
|
|
CONFIG_BT_HIDP
|
2010-04-23 04:01:03 +00:00
|
|
|
$(call AddDepends/crc16)
|
2010-04-24 11:01:06 +00:00
|
|
|
$(call AddDepends/hid)
|
2010-04-23 04:08:26 +00:00
|
|
|
$(call AddDepends/rfkill)
|
2006-10-19 13:28:36 +00:00
|
|
|
FILES:= \
|
2007-04-18 12:28:38 +00:00
|
|
|
$(LINUX_DIR)/net/bluetooth/bluetooth.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/net/bluetooth/l2cap.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/net/bluetooth/sco.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/net/bluetooth/rfcomm/rfcomm.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/net/bluetooth/bnep/bnep.$(LINUX_KMOD_SUFFIX) \
|
2009-04-20 12:27:34 +00:00
|
|
|
$(LINUX_DIR)/net/bluetooth/hidp/hidp.$(LINUX_KMOD_SUFFIX) \
|
2007-04-18 12:28:38 +00:00
|
|
|
$(LINUX_DIR)/drivers/bluetooth/hci_uart.$(LINUX_KMOD_SUFFIX) \
|
2009-12-30 10:52:28 +00:00
|
|
|
$(LINUX_DIR)/drivers/bluetooth/btusb.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,90,bluetooth l2cap sco rfcomm bnep hidp hci_uart btusb)
|
2006-10-19 04:35:29 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/bluetooth/description
|
|
|
|
Kernel support for Bluetooth devices
|
|
|
|
endef
|
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
$(eval $(call KernelPackage,bluetooth))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/crc-ccitt
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=CRC-CCITT support
|
2010-04-29 10:25:57 +00:00
|
|
|
DEPENDS:=@LINUX_2_6
|
2010-04-24 15:21:54 +00:00
|
|
|
KCONFIG:=CONFIG_CRC_CCITT
|
|
|
|
FILES:=$(LINUX_DIR)/lib/crc-ccitt.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,20,crc-ccitt)
|
2007-03-10 16:06:37 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/crc-ccitt/description
|
|
|
|
Kernel module for CRC-CCITT support
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,crc-ccitt))
|
2008-02-06 07:41:04 +00:00
|
|
|
|
2008-05-18 23:13:25 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/crc-itu-t
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=CRC ITU-T V.41 support
|
2010-04-29 10:25:57 +00:00
|
|
|
DEPENDS:=@LINUX_2_6
|
2010-04-24 15:21:54 +00:00
|
|
|
KCONFIG:=CONFIG_CRC_ITU_T
|
|
|
|
FILES:=$(LINUX_DIR)/lib/crc-itu-t.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,20,crc-itu-t)
|
2006-10-19 04:35:29 +00:00
|
|
|
endef
|
2006-10-19 18:05:21 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/crc-itu-t/description
|
|
|
|
Kernel module for CRC ITU-T V.41 support
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,crc-itu-t))
|
2006-10-19 04:35:29 +00:00
|
|
|
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/crc7
|
2007-10-11 11:05:16 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=CRC7 support
|
2010-04-29 10:25:57 +00:00
|
|
|
DEPENDS:=@LINUX_2_6
|
2010-04-24 15:21:54 +00:00
|
|
|
KCONFIG:=CONFIG_CRC7
|
|
|
|
FILES:=$(LINUX_DIR)/lib/crc7.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,20,crc7)
|
2007-10-11 11:05:16 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/crc7/description
|
|
|
|
Kernel module for CRC7 support
|
2007-10-11 11:05:16 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,crc7))
|
2007-10-11 11:05:16 +00:00
|
|
|
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/crc16
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=CRC16 support
|
|
|
|
KCONFIG:=CONFIG_CRC16
|
|
|
|
FILES:=$(LINUX_DIR)/lib/crc16.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,20,crc16,1)
|
|
|
|
$(call SetDepends/crc16)
|
2007-04-16 08:03:53 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/crc16/description
|
|
|
|
Kernel module for CRC16 support
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,crc16))
|
2007-04-16 08:03:53 +00:00
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/eeprom-93cx6
|
2007-09-17 01:48:35 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=EEPROM 93CX6 support
|
|
|
|
DEPENDS:=@LINUX_2_6
|
|
|
|
KCONFIG:=CONFIG_EEPROM_93CX6
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/misc/eeprom/eeprom_93cx6.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,20,eeprom_93cx6)
|
2007-09-16 19:31:37 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/eeprom-93cx6/description
|
|
|
|
Kernel module for EEPROM 93CX6 support
|
2007-09-16 19:31:37 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,eeprom-93cx6))
|
2007-09-16 19:31:37 +00:00
|
|
|
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/gpio-cs5535
|
2007-12-14 00:52:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=AMD CS5535/CS5536 GPIO driver
|
2007-12-14 00:52:15 +00:00
|
|
|
DEPENDS:=@TARGET_x86
|
2010-04-24 15:21:54 +00:00
|
|
|
KCONFIG:=CONFIG_CS5535_GPIO
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/char/cs5535_gpio.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,cs5535_gpio)
|
2007-12-14 00:52:15 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/gpio-cs5535/description
|
|
|
|
This package contains the AMD CS5535/CS5536 GPIO driver
|
2007-12-14 00:52:15 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,gpio-cs5535))
|
2007-12-14 00:52:15 +00:00
|
|
|
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/gpio-dev
|
2009-12-11 20:32:33 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=Generic GPIO char device support
|
|
|
|
DEPENDS:=@GPIO_SUPPORT
|
|
|
|
KCONFIG:=CONFIG_GPIO_DEVICE
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/char/gpio_dev.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,40,gpio_dev)
|
2008-08-05 09:52:23 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/gpio-dev/description
|
|
|
|
Kernel module to allows control of GPIO pins using a character device.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,gpio-dev))
|
|
|
|
|
|
|
|
|
2010-04-24 14:08:49 +00:00
|
|
|
define KernelPackage/gpio-nsc
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2007-04-16 08:03:53 +00:00
|
|
|
TITLE:=Natsemi GPIO support
|
2007-09-11 13:49:28 +00:00
|
|
|
DEPENDS:=@TARGET_x86
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_NSC_GPIO
|
2007-04-18 12:28:38 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/char/nsc_gpio.$(LINUX_KMOD_SUFFIX)
|
2007-04-16 08:03:53 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,nsc_gpio)
|
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-24 14:13:39 +00:00
|
|
|
define KernelPackage/gpio-nsc/description
|
2007-09-07 08:34:51 +00:00
|
|
|
Kernel module for Natsemi GPIO
|
|
|
|
endef
|
|
|
|
|
2010-04-24 14:13:39 +00:00
|
|
|
$(eval $(call KernelPackage,gpio-nsc))
|
2007-04-16 08:03:53 +00:00
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/gpio-pc8736x
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=PC8736x GPIO support
|
|
|
|
DEPENDS:=@TARGET_x86
|
|
|
|
KCONFIG:=CONFIG_PC8736x_GPIO
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/char/pc8736x_gpio.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,40,pc8736x_gpio)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/gpio-pc8736x/description
|
|
|
|
Kernel module for PC8736x GPIO
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,gpio-pc8736x))
|
|
|
|
|
|
|
|
|
2010-04-24 14:08:49 +00:00
|
|
|
define KernelPackage/gpio-scx200
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2007-04-16 08:03:53 +00:00
|
|
|
TITLE:=Natsemi SCX200 GPIO support
|
2010-04-24 15:20:42 +00:00
|
|
|
DEPENDS:=@TARGET_x86 +kmod-gpio-nsc
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_SCx200_GPIO
|
2007-04-18 12:28:38 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/char/scx200_gpio.$(LINUX_KMOD_SUFFIX)
|
2007-04-16 08:03:53 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,scx200_gpio)
|
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-24 14:13:39 +00:00
|
|
|
define KernelPackage/gpio-scx200/description
|
2007-09-07 08:34:51 +00:00
|
|
|
Kernel module for SCX200 GPIO
|
|
|
|
endef
|
|
|
|
|
2010-04-24 14:13:39 +00:00
|
|
|
$(eval $(call KernelPackage,gpio-scx200))
|
2006-10-19 04:35:29 +00:00
|
|
|
|
2010-06-12 18:10:28 +00:00
|
|
|
define KernelPackage/gpio-nxp-74hc164
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=NXP 74HC164 GPIO expander support
|
|
|
|
DEPENDS:=@TARGET_brcm63xx
|
|
|
|
KCONFIG:=CONFIG_GPIO_NXP_74HC164
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/gpio/nxp_74hc164.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,99,nxp_74hc164)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/gpio-nxp-74hc164/description
|
|
|
|
Kernel module for NXP 74HC164 GPIO expander
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,gpio-nxp-74hc164))
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/hid
|
2008-11-28 18:04:36 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=HID Devices
|
|
|
|
DEPENDS:=+kmod-input-evdev
|
|
|
|
KCONFIG:=CONFIG_HID
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/hid/hid.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,61,hid)
|
|
|
|
$(call SetDepends/hid)
|
|
|
|
$(call AddDepends/input)
|
2008-11-28 18:04:36 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/hid/description
|
|
|
|
Kernel modules for HID devices
|
2008-11-28 18:04:36 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,hid))
|
2008-11-28 18:04:36 +00:00
|
|
|
|
|
|
|
|
2007-05-27 18:51:50 +00:00
|
|
|
define KernelPackage/input-core
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2007-05-27 18:51:50 +00:00
|
|
|
TITLE:=Input device core
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_INPUT
|
2010-04-24 11:01:06 +00:00
|
|
|
$(call SetDepends/input)
|
2010-06-26 20:43:41 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/input/input-core.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,19,input-core)
|
2007-05-27 18:51:50 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/input-core/description
|
|
|
|
Kernel modules for support of input device
|
|
|
|
endef
|
|
|
|
|
2007-05-27 18:51:50 +00:00
|
|
|
$(eval $(call KernelPackage,input-core))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-05-27 18:51:50 +00:00
|
|
|
define KernelPackage/input-evdev
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2009-04-20 12:29:11 +00:00
|
|
|
TITLE:=Input event device
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_INPUT_EVDEV
|
2007-05-27 18:51:50 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/input/evdev.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60,evdev)
|
2010-04-24 11:01:06 +00:00
|
|
|
$(call AddDepends/input)
|
2007-05-27 18:51:50 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/input-evdev/description
|
|
|
|
Kernel modules for support of input device events
|
|
|
|
endef
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
$(eval $(call KernelPackage,input-evdev))
|
2008-03-21 16:52:27 +00:00
|
|
|
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/input-gpio-buttons
|
2008-04-20 21:01:03 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=Polled GPIO buttons input device
|
|
|
|
DEPENDS:=@GPIO_SUPPORT +kmod-input-polldev
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_INPUT_GPIO_BUTTONS \
|
|
|
|
CONFIG_INPUT_MISC=y
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/input/misc/gpio_buttons.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,62,gpio_buttons)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/input-gpio-buttons/description
|
|
|
|
Kernel module for support polled GPIO buttons input device
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,input-gpio-buttons))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/input-gpio-keys
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=GPIO key support
|
|
|
|
DEPENDS:= @GPIO_SUPPORT
|
|
|
|
KCONFIG:=CONFIG_KEYBOARD_GPIO
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/input/keyboard/gpio_keys.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60,gpio_keys)
|
2010-04-24 11:01:06 +00:00
|
|
|
$(call AddDepends/input)
|
2008-04-20 21:01:03 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/input-gpio-keys/description
|
|
|
|
This driver implements support for buttons connected
|
|
|
|
to GPIO pins of various CPUs (and some other chips).
|
2008-04-20 21:01:03 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,input-gpio-keys))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/input-joydev
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Joystick device support
|
|
|
|
KCONFIG:=CONFIG_INPUT_JOYDEV
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/input/joydev.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,62,joydev)
|
|
|
|
$(call AddDepends/input)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/input-joydev/description
|
|
|
|
Kernel module for joystick support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,input-joydev))
|
2008-04-20 21:01:03 +00:00
|
|
|
|
|
|
|
|
2008-04-07 19:54:44 +00:00
|
|
|
define KernelPackage/input-polldev
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Polled Input device support
|
2010-04-24 11:01:06 +00:00
|
|
|
DEPENDS:=@LINUX_2_6
|
2008-04-07 19:54:44 +00:00
|
|
|
KCONFIG:=CONFIG_INPUT_POLLDEV
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/input/input-polldev.$(LINUX_KMOD_SUFFIX)
|
2009-05-11 20:57:09 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,20,input-polldev)
|
2010-04-24 11:01:06 +00:00
|
|
|
$(call AddDepends/input)
|
2008-04-07 19:54:44 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/input-polldev/description
|
|
|
|
Kernel module for support of polled input devices
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,input-polldev))
|
|
|
|
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/leds-alix
|
2009-07-06 16:10:20 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=PCengines ALIX LED support
|
|
|
|
DEPENDS:=@TARGET_x86
|
|
|
|
KCONFIG:=CONFIG_LEDS_ALIX2
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/leds-alix2.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,leds-alix2)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/leds-alix/description
|
|
|
|
Kernel module for PCengines ALIX LEDs
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,leds-alix))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/leds-gpio
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=GPIO LED support
|
2010-04-24 11:01:06 +00:00
|
|
|
DEPENDS:= @GPIO_SUPPORT
|
2010-04-24 15:21:54 +00:00
|
|
|
KCONFIG:=CONFIG_LEDS_GPIO
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/leds-gpio.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60,leds-gpio)
|
2009-07-06 16:10:20 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/leds-gpio/description
|
|
|
|
Kernel module for LEDs on GPIO lines
|
2009-07-06 16:10:20 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,leds-gpio))
|
2009-07-06 16:10:20 +00:00
|
|
|
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/leds-net48xx
|
2008-04-07 19:54:44 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=Soekris Net48xx LED support
|
|
|
|
DEPENDS:=@TARGET_x86 +kmod-gpio-scx200
|
|
|
|
KCONFIG:=CONFIG_LEDS_NET48XX
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/leds-net48xx.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,leds-net48xx)
|
2008-04-07 19:54:44 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/leds-net48xx/description
|
|
|
|
Kernel module for Soekris Net48xx LEDs
|
2008-04-07 19:54:44 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,leds-net48xx))
|
2008-04-07 19:54:44 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
|
|
|
|
define KernelPackage/leds-rb750
|
2009-04-20 12:31:00 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=RouterBOARD 750 LED support
|
|
|
|
DEPENDS:=@TARGET_ar71xx
|
|
|
|
KCONFIG:=CONFIG_LEDS_RB750
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/leds-rb750.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60,leds-rb750)
|
2009-04-20 12:31:00 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/leds-rb750/description
|
|
|
|
Kernel module for the LEDs on the MikroTik RouterBOARD 750.
|
2009-04-20 12:31:00 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,leds-rb750))
|
2009-04-20 12:31:00 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
|
|
|
|
define KernelPackage/leds-wndr3700-usb
|
2008-03-29 05:16:10 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=WNDR3700 USB LED support
|
|
|
|
DEPENDS:=@TARGET_ar71xx
|
|
|
|
KCONFIG:=CONFIG_LEDS_WNDR3700_USB
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/leds-wndr3700-usb.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60,leds-wndr3700-usb)
|
2008-03-29 05:16:10 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/leds-wndr3700-usb/description
|
|
|
|
Kernel module for the USB LED on the NETGWR WNDR3700 board.
|
2008-03-29 05:16:10 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,leds-wndr3700-usb))
|
2008-03-29 05:16:10 +00:00
|
|
|
|
2009-03-08 19:21:55 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/leds-wrap
|
2009-01-07 11:07:51 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=PCengines WRAP LED support
|
|
|
|
DEPENDS:=@TARGET_x86 +kmod-gpio-scx200
|
|
|
|
KCONFIG:=CONFIG_LEDS_WRAP
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/leds-wrap.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,leds-wrap)
|
2009-01-07 11:07:51 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/leds-wrap/description
|
|
|
|
Kernel module for PCengines WRAP LEDs
|
2009-01-07 11:07:51 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,leds-wrap))
|
2009-03-07 16:53:08 +00:00
|
|
|
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/ledtrig-morse
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=LED Morse Trigger
|
2010-04-29 10:25:57 +00:00
|
|
|
DEPENDS:=@LINUX_2_6
|
2010-04-24 15:21:54 +00:00
|
|
|
KCONFIG:=CONFIG_LEDS_TRIGGER_MORSE
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/ledtrig-morse.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,ledtrig-morse)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/ledtrig-morse/description
|
|
|
|
Kernel module to show morse coded messages on LEDs.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,ledtrig-morse))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/ledtrig-netdev
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=LED NETDEV Trigger
|
2010-04-29 10:25:57 +00:00
|
|
|
DEPENDS:=@LINUX_2_6
|
2010-04-24 15:21:54 +00:00
|
|
|
KCONFIG:=CONFIG_LEDS_TRIGGER_NETDEV
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/ledtrig-netdev.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,ledtrig-netdev)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/ledtrig-netdev/description
|
|
|
|
Kernel module to drive LEDs based on network activity.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,ledtrig-netdev))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/lp
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Parallel port and line printer support
|
2010-06-26 20:43:41 +00:00
|
|
|
DEPENDS:=@BROKEN
|
2010-04-24 15:21:54 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_PARPORT \
|
|
|
|
CONFIG_PRINTER \
|
|
|
|
CONFIG_PPDEV
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/parport/parport.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/drivers/char/lp.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/drivers/char/ppdev.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,parport lp)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,lp))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/mmc
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=MMC/SD Card Support
|
2010-01-23 17:07:59 +00:00
|
|
|
DEPENDS:=@LINUX_2_6
|
2009-03-07 16:53:08 +00:00
|
|
|
KCONFIG:= \
|
2010-04-24 15:21:54 +00:00
|
|
|
CONFIG_MMC \
|
|
|
|
CONFIG_MMC_BLOCK \
|
|
|
|
CONFIG_MMC_DEBUG=n \
|
|
|
|
CONFIG_MMC_UNSAFE_RESUME=n \
|
|
|
|
CONFIG_MMC_BLOCK_BOUNCE=y \
|
|
|
|
CONFIG_MMC_SDHCI=n \
|
|
|
|
CONFIG_MMC_TIFM_SD=n \
|
|
|
|
CONFIG_MMC_WBSD=n \
|
|
|
|
CONFIG_SDIO_UART=n
|
2009-03-07 16:53:08 +00:00
|
|
|
FILES:= \
|
2010-04-24 15:21:54 +00:00
|
|
|
$(LINUX_DIR)/drivers/mmc/core/mmc_core.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/drivers/mmc/card/mmc_block.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,90,mmc_core mmc_block,1)
|
2009-03-07 16:53:08 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/mmc/description
|
|
|
|
Kernel support for MMC/SD cards
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,mmc))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/mmc-atmelmci
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Amtel MMC Support
|
|
|
|
DEPENDS:=@TARGET_avr32 +kmod-mmc
|
|
|
|
KCONFIG:=CONFIG_MMC_ATMELMCI
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/mmc/host/atmel-mci.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,90,atmel-mci)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/mmc-atmelmci/description
|
|
|
|
Kernel support for Atmel Multimedia Card Interface.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,mmc-atmelmci,1))
|
2009-03-07 16:53:08 +00:00
|
|
|
|
2009-03-07 17:07:24 +00:00
|
|
|
|
|
|
|
define KernelPackage/rfkill
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=RF switch subsystem support
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_RFKILL \
|
2009-12-04 14:52:41 +00:00
|
|
|
CONFIG_RFKILL_INPUT=y \
|
2009-03-07 17:07:24 +00:00
|
|
|
CONFIG_RFKILL_LEDS=y
|
2009-09-26 21:23:53 +00:00
|
|
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.31)),1)
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/net/rfkill/rfkill.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,20,rfkill)
|
|
|
|
else
|
2009-03-07 17:07:24 +00:00
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/net/rfkill/rfkill.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/net/rfkill/rfkill-input.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,20,rfkill rfkill-input)
|
2009-09-26 21:23:53 +00:00
|
|
|
endif
|
2010-04-23 04:08:26 +00:00
|
|
|
$(call SetDepends/rfkill)
|
2009-03-07 17:07:24 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/rfkill/description
|
|
|
|
Say Y here if you want to have control over RF switches
|
|
|
|
found on many WiFi and Bluetooth cards.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,rfkill))
|
2010-04-11 12:36:55 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
|
|
|
|
define KernelPackage/softdog
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Software watchdog driver
|
|
|
|
KCONFIG:=CONFIG_SOFT_WATCHDOG
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/softdog.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,softdog)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/softdog/description
|
|
|
|
Software watchdog driver
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,softdog))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/ssb
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Silicon Sonics Backplane glue code
|
|
|
|
DEPENDS:=@LINUX_2_6 @PCI_SUPPORT @!TARGET_brcm47xx @!TARGET_brcm63xx
|
|
|
|
KCONFIG:=\
|
|
|
|
CONFIG_SSB \
|
|
|
|
CONFIG_SSB_B43_PCI_BRIDGE=y \
|
|
|
|
CONFIG_SSB_DRIVER_MIPS=n \
|
|
|
|
CONFIG_SSB_DRIVER_PCICORE=y \
|
|
|
|
CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y \
|
|
|
|
CONFIG_SSB_PCIHOST=y \
|
|
|
|
CONFIG_SSB_PCIHOST_POSSIBLE=y \
|
|
|
|
CONFIG_SSB_POSSIBLE=y \
|
|
|
|
CONFIG_SSB_SPROM=y \
|
|
|
|
CONFIG_SSB_SILENT=y
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/ssb/ssb.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,29,ssb)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/ssb/description
|
|
|
|
Silicon Sonics Backplane glue code.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,ssb))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/textsearch
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Textsearch support is selected if needed
|
|
|
|
DEPENDS:=@LINUX_2_6
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_TEXTSEARCH=y \
|
|
|
|
CONFIG_TEXTSEARCH_KMP \
|
|
|
|
CONFIG_TEXTSEARCH_BM \
|
|
|
|
CONFIG_TEXTSEARCH_FSM
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/lib/ts_kmp.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/lib/ts_bm.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/lib/ts_fsm.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,20,ts_kmp ts_bm ts_fsm)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,textsearch))
|
|
|
|
|
|
|
|
|
2010-04-24 14:08:49 +00:00
|
|
|
define KernelPackage/wdt-geode
|
2010-04-11 12:36:55 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Geode/LX Watchdog timer
|
|
|
|
DEPENDS:=@TARGET_x86 @LINUX_2_6
|
|
|
|
KCONFIG:=CONFIG_GEODE_WDT
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/geodewdt.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,geodewdt)
|
|
|
|
endef
|
|
|
|
|
2010-04-24 14:13:39 +00:00
|
|
|
define KernelPackage/wdt-geode/description
|
2010-04-11 12:36:55 +00:00
|
|
|
Kernel module for Geode watchdog timer.
|
|
|
|
endef
|
|
|
|
|
2010-04-24 14:13:39 +00:00
|
|
|
$(eval $(call KernelPackage,wdt-geode))
|
2010-04-11 12:36:55 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
|
|
|
|
define KernelPackage/wdt-sc520
|
2010-04-11 12:36:55 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2010-04-24 15:21:54 +00:00
|
|
|
TITLE:=Natsemi SC520 Watchdog support
|
2010-04-11 12:36:55 +00:00
|
|
|
DEPENDS:=@TARGET_x86
|
2010-04-24 15:21:54 +00:00
|
|
|
KCONFIG:=CONFIG_SC520_WDT
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/sc520_wdt.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,sc520_wdt)
|
2010-04-11 12:36:55 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/wdt-sc520/description
|
|
|
|
Kernel module for SC520 Watchdog
|
2010-04-11 12:36:55 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
$(eval $(call KernelPackage,wdt-sc520))
|
|
|
|
|
2010-04-11 12:36:55 +00:00
|
|
|
|
2010-04-24 15:21:54 +00:00
|
|
|
define KernelPackage/wdt-scx200
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Natsemi SCX200 Watchdog support
|
|
|
|
DEPENDS:=@TARGET_x86
|
|
|
|
KCONFIG:=CONFIG_SCx200_WDT
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/scx200_wdt.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,scx200_wdt)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/wdt-scx200/description
|
|
|
|
Kernel module for SCX200 Watchdog
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,wdt-scx200))
|