2006-10-19 02:05:17 +00:00
|
|
|
#
|
2009-06-04 06:39:36 +00:00
|
|
|
# Copyright (C) 2006-2009 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-02-16 18:28:55 +00:00
|
|
|
define KernelPackage/block2mtd
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Block device MTD emulation
|
|
|
|
KCONFIG:=CONFIG_MTD_BLOCK2MTD
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/mtd/devices/block2mtd.$(LINUX_KMOD_SUFFIX)
|
|
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,block2mtd))
|
|
|
|
|
2007-08-30 22:19:26 +00:00
|
|
|
define KernelPackage/crc-itu-t
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2007-08-30 22:19:26 +00:00
|
|
|
TITLE:=CRC ITU-T V.41 support
|
|
|
|
KCONFIG:=CONFIG_CRC_ITU_T
|
|
|
|
FILES:=$(LINUX_DIR)/lib/crc-itu-t.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,20,crc-itu-t)
|
|
|
|
endef
|
|
|
|
|
2007-09-11 13:29:53 +00:00
|
|
|
define KernelPackage/crc-itu-t/description
|
|
|
|
Kernel module for CRC ITU-T V.41 support
|
|
|
|
endef
|
|
|
|
|
2007-08-30 22:19:26 +00:00
|
|
|
$(eval $(call KernelPackage,crc-itu-t))
|
|
|
|
|
2008-11-03 22:09:39 +00:00
|
|
|
define KernelPackage/crc-ccitt
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=CRC-CCITT support
|
|
|
|
KCONFIG:=CONFIG_CRC_CCITT
|
|
|
|
FILES:=$(LINUX_DIR)/lib/crc-ccitt.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,20,crc-ccitt)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/crc-ccitt/description
|
|
|
|
Kernel module for CRC-CCITT support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crc-ccitt))
|
|
|
|
|
2007-08-30 22:19:26 +00:00
|
|
|
|
2008-03-21 16:52:27 +00:00
|
|
|
define KernelPackage/crc7
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=CRC7 support
|
|
|
|
KCONFIG:=CONFIG_CRC7
|
|
|
|
FILES:=$(LINUX_DIR)/lib/crc7.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,20,crc7)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/crc7/description
|
|
|
|
Kernel module for CRC7 support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crc7))
|
|
|
|
|
|
|
|
|
2009-02-17 22:54:11 +00:00
|
|
|
define KernelPackage/crc16
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=CRC16 support
|
|
|
|
KCONFIG:=CONFIG_CRC16
|
|
|
|
FILES:=$(LINUX_DIR)/lib/crc16.$(LINUX_KMOD_SUFFIX)
|
2010-04-11 18:38:56 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,20,crc16,1)
|
2009-02-17 22:54:11 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/crc16/description
|
|
|
|
Kernel module for CRC16 support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crc16))
|
|
|
|
|
|
|
|
|
2007-08-30 22:19:26 +00:00
|
|
|
define KernelPackage/eeprom-93cx6
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2007-08-30 22:19:26 +00:00
|
|
|
TITLE:=EEPROM 93CX6 support
|
|
|
|
DEPENDS:=@LINUX_2_6
|
|
|
|
KCONFIG:=CONFIG_EEPROM_93CX6
|
2009-05-01 15:13:18 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/misc/eeprom/eeprom_93cx6.$(LINUX_KMOD_SUFFIX)
|
2007-08-30 22:19:26 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,20,eeprom_93cx6)
|
|
|
|
endef
|
|
|
|
|
2007-09-11 13:29:53 +00:00
|
|
|
define KernelPackage/eeprom-93cx6/description
|
|
|
|
Kernel module for EEPROM 93CX6 support
|
|
|
|
endef
|
|
|
|
|
2007-08-30 22:19:26 +00:00
|
|
|
$(eval $(call KernelPackage,eeprom-93cx6))
|
|
|
|
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
define KernelPackage/lp
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2006-10-17 13:18:01 +00:00
|
|
|
TITLE:=Parallel port and line printer support
|
2007-07-18 11:31:01 +00:00
|
|
|
DEPENDS:=@LINUX_2_4
|
2007-09-03 08:58:14 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_PARPORT \
|
|
|
|
CONFIG_PRINTER \
|
|
|
|
CONFIG_PPDEV
|
2006-10-17 13:18:01 +00:00
|
|
|
FILES:= \
|
2007-04-18 12:28:38 +00:00
|
|
|
$(LINUX_DIR)/drivers/parport/parport.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/drivers/char/lp.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/drivers/char/ppdev.$(LINUX_KMOD_SUFFIX)
|
2007-08-28 11:44:15 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,parport lp)
|
2006-10-17 13:18:01 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
$(eval $(call KernelPackage,lp))
|
|
|
|
|
2009-05-07 14:05:42 +00:00
|
|
|
define KernelPackage/pcspkr
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=PC speaker support
|
|
|
|
DEPENDS:=@LINUX_2_6
|
|
|
|
KCONFIG:=CONFIG_INPUT_PCSPKR
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/input/misc/pcspkr.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50, \
|
|
|
|
pcspkr \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pcspkr/description
|
|
|
|
This enables sounds (tones) through the pc speaker
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pcspkr))
|
2006-10-17 13:18:01 +00:00
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
define KernelPackage/pcmcia-core
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2006-10-19 04:35:29 +00:00
|
|
|
TITLE:=PCMCIA/CardBus support
|
2007-08-16 13:34:29 +00:00
|
|
|
DEPENDS:=@PCMCIA_SUPPORT
|
2007-09-03 08:58:14 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_PCMCIA \
|
2008-01-09 07:44:17 +00:00
|
|
|
CONFIG_CARDBUS \
|
2007-09-09 20:37:50 +00:00
|
|
|
CONFIG_PCCARD \
|
|
|
|
PCMCIA_DEBUG=n
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pcmcia-core/2.4
|
|
|
|
# KCONFIG:= \
|
|
|
|
# CONFIG_PCMCIA \
|
|
|
|
# CONFIG_CARDBUS
|
2006-10-19 04:35:29 +00:00
|
|
|
FILES:= \
|
2007-04-18 12:28:38 +00:00
|
|
|
$(LINUX_DIR)/drivers/pcmcia/pcmcia_core.$(LINUX_KMOD_SUFFIX) \
|
2010-03-26 10:09:13 +00:00
|
|
|
$(LINUX_DIR)/drivers/pcmcia/ds.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/drivers/pcmcia/yenta_socket.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,25,pcmcia_core ds yenta_socket)
|
2006-10-19 04:35:29 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pcmcia-core/2.6
|
2007-09-09 20:37:50 +00:00
|
|
|
# KCONFIG:= \
|
|
|
|
# CONFIG_PCCARD \
|
|
|
|
# CONFIG_PCMCIA \
|
|
|
|
# PCMCIA_DEBUG=n
|
2007-09-03 08:58:14 +00:00
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/pcmcia/pcmcia_core.$(LINUX_KMOD_SUFFIX) \
|
2009-07-20 13:49:58 +00:00
|
|
|
$(LINUX_DIR)/drivers/pcmcia/pcmcia.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,25,pcmcia_core pcmcia)
|
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/pcmcia-core/description
|
|
|
|
Kernel support for PCMCIA/CardBus controllers
|
|
|
|
endef
|
2007-09-03 08:58:14 +00:00
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
$(eval $(call KernelPackage,pcmcia-core))
|
|
|
|
|
2008-11-15 12:28:36 +00:00
|
|
|
|
|
|
|
define KernelPackage/pcmcia-yenta
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=yenta socket driver
|
2010-03-26 10:09:13 +00:00
|
|
|
DEPENDS:=@LINUX_2_6 kmod-pcmcia-core
|
2010-03-11 16:37:11 +00:00
|
|
|
KCONFIG:= \
|
2010-03-26 10:09:13 +00:00
|
|
|
CONFIG_PCCARD_NONSTATIC \
|
2010-03-11 16:37:11 +00:00
|
|
|
CONFIG_YENTA
|
2009-07-20 13:49:58 +00:00
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/pcmcia/rsrc_nonstatic.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/drivers/pcmcia/yenta_socket.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,41,rsrc_nonstatic yenta_socket)
|
2008-11-15 12:28:36 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pcmcia-yenta))
|
|
|
|
|
2010-03-11 16:37:11 +00:00
|
|
|
|
2008-11-15 12:28:36 +00:00
|
|
|
define KernelPackage/pcmcia-au1000
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=RMI/AMD Au1000 PCMCIA support
|
|
|
|
DEPENDS:=kmod-pcmcia-core @TARGET_au1000
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/pcmcia/au1x00_ss.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,41,au1x00_ss)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pcmcia-au1000))
|
|
|
|
|
2008-11-15 11:26:23 +00:00
|
|
|
define KernelPackage/pcmcia-bcm63xx
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Broadcom BCM63xx PCMCIA support
|
|
|
|
DEPENDS:=kmod-pcmcia-core @TARGET_brcm63xx
|
|
|
|
KCONFIG:=CONFIG_PCMCIA_BCM63XX
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/pcmcia/bcm63xx_pcmcia.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,41,bcm63xx_pcmcia)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pcmcia-bcm63xx/description
|
|
|
|
Kernel support for PCMCIA/CardBus controller on the BCM63xx SoC
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pcmcia-bcm63xx))
|
2006-10-19 04:35:29 +00:00
|
|
|
|
|
|
|
define KernelPackage/pcmcia-serial
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2006-10-19 04:35:29 +00:00
|
|
|
TITLE:=Serial devices support
|
|
|
|
DEPENDS:=kmod-pcmcia-core
|
2007-09-09 20:37:50 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_PCMCIA_SERIAL_CS \
|
2008-05-16 16:35:04 +00:00
|
|
|
CONFIG_SERIAL_8250_CS
|
2007-08-28 11:44:15 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,45,serial_cs)
|
2006-10-19 04:35:29 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pcmcia-serial/2.4
|
2007-09-09 20:37:50 +00:00
|
|
|
# KCONFIG:=CONFIG_PCMCIA_SERIAL_CS
|
2007-04-18 12:28:38 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/char/pcmcia/serial_cs.$(LINUX_KMOD_SUFFIX)
|
2006-10-19 04:35:29 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pcmcia-serial/2.6
|
2007-09-09 20:37:50 +00:00
|
|
|
# KCONFIG:=CONFIG_SERIAL_8250_CS
|
2007-04-18 12:28:38 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/serial/serial_cs.$(LINUX_KMOD_SUFFIX)
|
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/pcmcia-serial/description
|
|
|
|
Kernel support for PCMCIA/CardBus serial devices
|
|
|
|
endef
|
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
$(eval $(call KernelPackage,pcmcia-serial))
|
|
|
|
|
2008-11-20 23:01:07 +00:00
|
|
|
define KernelPackage/ssb
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Silicon Sonics Backplane glue code
|
2009-10-28 15:10:30 +00:00
|
|
|
DEPENDS:=@LINUX_2_6 @PCI_SUPPORT @!TARGET_brcm47xx @!TARGET_brcm63xx
|
2008-11-20 23:01:07 +00:00
|
|
|
KCONFIG:=\
|
|
|
|
CONFIG_SSB \
|
2008-11-26 17:43:50 +00:00
|
|
|
CONFIG_SSB_B43_PCI_BRIDGE=y \
|
2009-04-27 15:48:11 +00:00
|
|
|
CONFIG_SSB_DRIVER_MIPS=n \
|
2008-11-29 15:09:32 +00:00
|
|
|
CONFIG_SSB_DRIVER_PCICORE=y \
|
|
|
|
CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y \
|
2008-11-26 17:43:50 +00:00
|
|
|
CONFIG_SSB_PCIHOST=y \
|
2008-11-29 15:09:32 +00:00
|
|
|
CONFIG_SSB_PCIHOST_POSSIBLE=y \
|
|
|
|
CONFIG_SSB_POSSIBLE=y \
|
2008-12-03 20:37:01 +00:00
|
|
|
CONFIG_SSB_SPROM=y \
|
|
|
|
CONFIG_SSB_SILENT=y
|
2008-11-20 23:01:07 +00:00
|
|
|
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))
|
|
|
|
|
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-16 10:44:11 +00:00
|
|
|
DEPENDS:=@USB_SUPPORT +kmod-crc16 +kmod-usb-core +!TARGET_x86:kmod-hid \
|
|
|
|
+(TARGET_x86||TARGET_s3c24xx||TARGET_brcm47xx||TARGET_ar71xx):kmod-rfkill
|
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
|
2007-09-09 20:37:50 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/bluetooth/2.4
|
|
|
|
# KCONFIG:= \
|
|
|
|
# CONFIG_BLUEZ \
|
|
|
|
# CONFIG_BLUEZ_L2CAP \
|
|
|
|
# CONFIG_BLUEZ_SCO \
|
|
|
|
# CONFIG_BLUEZ_RFCOMM \
|
|
|
|
# CONFIG_BLUEZ_BNEP \
|
|
|
|
# CONFIG_BLUEZ_HCIUART \
|
|
|
|
# CONFIG_BLUEZ_HCIUSB
|
2006-10-19 13:28:36 +00:00
|
|
|
FILES:= \
|
2007-04-18 12:28:38 +00:00
|
|
|
$(LINUX_DIR)/net/bluetooth/bluez.$(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) \
|
|
|
|
$(LINUX_DIR)/drivers/bluetooth/hci_uart.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/drivers/bluetooth/hci_usb.$(LINUX_KMOD_SUFFIX)
|
2007-04-06 16:29:45 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,90,bluez l2cap sco rfcomm bnep hci_uart hci_usb)
|
2006-10-19 04:35:29 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/bluetooth/2.6
|
2007-09-09 20:37:50 +00:00
|
|
|
# KCONFIG:= \
|
|
|
|
# CONFIG_BT \
|
|
|
|
# CONFIG_BT_L2CAP \
|
|
|
|
# CONFIG_BT_SCO \
|
|
|
|
# CONFIG_BT_RFCOMM \
|
|
|
|
# CONFIG_BT_BNEP \
|
|
|
|
# CONFIG_BT_HCIUSB \
|
|
|
|
# CONFIG_BT_HCIUART
|
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
|
|
|
|
2007-03-10 16:06:37 +00:00
|
|
|
define KernelPackage/mmc
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2007-03-10 16:06:37 +00:00
|
|
|
TITLE:=MMC/SD Card Support
|
2008-03-21 16:52:27 +00:00
|
|
|
DEPENDS:=@LINUX_2_6
|
2007-09-03 08:58:14 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_MMC \
|
|
|
|
CONFIG_MMC_BLOCK \
|
2008-03-21 16:52:27 +00:00
|
|
|
CONFIG_MMC_DEBUG=n \
|
|
|
|
CONFIG_MMC_UNSAFE_RESUME=n \
|
|
|
|
CONFIG_MMC_BLOCK_BOUNCE=y \
|
|
|
|
CONFIG_MMC_SDHCI=n \
|
|
|
|
CONFIG_MMC_TIFM_SD=n \
|
2008-04-12 20:27:48 +00:00
|
|
|
CONFIG_MMC_WBSD=n \
|
2008-03-21 16:52:27 +00:00
|
|
|
CONFIG_SDIO_UART=n
|
2007-07-18 11:31:01 +00:00
|
|
|
FILES:= \
|
2008-03-21 16:52:27 +00:00
|
|
|
$(LINUX_DIR)/drivers/mmc/core/mmc_core.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/drivers/mmc/card/mmc_block.$(LINUX_KMOD_SUFFIX)
|
2010-02-26 22:46:00 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,90,mmc_core mmc_block,1)
|
2007-03-10 16:06:37 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/mmc/description
|
|
|
|
Kernel support for MMC/SD cards
|
|
|
|
endef
|
|
|
|
|
2007-03-10 16:06:37 +00:00
|
|
|
$(eval $(call KernelPackage,mmc))
|
2006-10-19 04:35:29 +00:00
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2008-03-21 16:52:27 +00:00
|
|
|
define KernelPackage/mmc-at91
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=MMC/SD Card Support on AT91
|
|
|
|
DEPENDS:=@TARGET_at91 +kmod-mmc
|
|
|
|
KCONFIG:=CONFIG_MMC_AT91
|
2008-09-01 13:21:34 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/mmc/host/at91_mci.$(LINUX_KMOD_SUFFIX)
|
2010-02-26 22:46:00 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,90,at91_mci,1)
|
2008-03-21 16:52:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/mmc-at91/description
|
|
|
|
Kernel support for MMC/SD cards on the AT91 target
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,mmc-at91))
|
|
|
|
|
|
|
|
|
2008-02-06 07:41:04 +00:00
|
|
|
# XXX: added a workaround for watchdog path changes
|
|
|
|
ifeq ($(KERNEL),2.4)
|
|
|
|
WATCHDOG_DIR=char
|
|
|
|
endif
|
2009-12-28 14:55:38 +00:00
|
|
|
WATCHDOG_DIR?=watchdog
|
2008-02-06 07:41:04 +00:00
|
|
|
|
2008-05-18 23:13:25 +00:00
|
|
|
define KernelPackage/atmel-wdt
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=AT32AP700x watchdog
|
|
|
|
DEPENDS:=@TARGET_avr32
|
|
|
|
KCONFIG:=CONFIG_AT32AP700X_WDT
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/at32ap700x_wdt.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,at32ap700x_wdt)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/atmel-wdt/description
|
|
|
|
AT32AP700x watchdog
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,atmel-wdt))
|
|
|
|
|
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
define KernelPackage/softdog
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2006-10-19 04:35:29 +00:00
|
|
|
TITLE:=Software watchdog driver
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_SOFT_WATCHDOG
|
2008-02-06 07:41:04 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/softdog.$(LINUX_KMOD_SUFFIX)
|
2006-10-19 04:35:29 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,softdog)
|
|
|
|
endef
|
2006-10-19 18:05:21 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/softdog/description
|
|
|
|
Software watchdog driver
|
|
|
|
endef
|
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
$(eval $(call KernelPackage,softdog))
|
|
|
|
|
2009-11-04 22:43:05 +00:00
|
|
|
define KernelPackage/rdc321x-wdt
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=RDC321x watchdog
|
|
|
|
DEPENDS:=@TARGET_rdc
|
|
|
|
KCONFIG:=CONFIG_RDC321X_WDT
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/rdc321x_wdt.$(LINUX_KMOD_SUFFIX)
|
2009-12-12 21:31:17 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,rdc321x_wdt)
|
2009-11-04 22:43:05 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/rdc321x-wdt/description
|
|
|
|
RDC-321x watchdog driver
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,rdc321x-wdt))
|
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
|
2007-10-11 11:05:16 +00:00
|
|
|
define KernelPackage/leds-gpio
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=GPIO LED support
|
2008-04-29 17:21:08 +00:00
|
|
|
DEPENDS:= @GPIO_SUPPORT
|
2007-10-11 11:05:16 +00:00
|
|
|
KCONFIG:=CONFIG_LEDS_GPIO
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/leds-gpio.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60,leds-gpio)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/leds-gpio/description
|
|
|
|
Kernel module for LEDs on GPIO lines
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,leds-gpio))
|
|
|
|
|
|
|
|
|
2007-10-20 07:45:08 +00:00
|
|
|
define KernelPackage/ledtrig-adm5120-switch
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=LED ADM5120 Switch Port Status Trigger
|
|
|
|
DEPENDS:=@TARGET_adm5120
|
|
|
|
KCONFIG:=CONFIG_LEDS_TRIGGER_ADM5120_SWITCH
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/ledtrig-adm5120-switch.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,ledtrig-adm5120-switch)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/ledtrig-adm5120-switch/description
|
|
|
|
Kernel module to allow LEDs to be controlled by the port states
|
|
|
|
of the ADM5120 built-in ethernet switch.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,ledtrig-adm5120-switch))
|
|
|
|
|
|
|
|
|
2007-04-16 08:03:53 +00:00
|
|
|
define KernelPackage/leds-net48xx
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2007-04-16 08:03:53 +00:00
|
|
|
TITLE:=Soekris Net48xx LED support
|
2009-01-29 11:32:20 +00:00
|
|
|
DEPENDS:=@TARGET_x86 +kmod-scx200-gpio
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_LEDS_NET48XX
|
2007-04-18 12:28:38 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/leds-net48xx.$(LINUX_KMOD_SUFFIX)
|
2007-04-16 08:03:53 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,leds-net48xx)
|
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/leds-net48xx/description
|
|
|
|
Kernel module for Soekris Net48xx LEDs
|
|
|
|
endef
|
|
|
|
|
2007-04-16 08:03:53 +00:00
|
|
|
$(eval $(call KernelPackage,leds-net48xx))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-16 19:31:37 +00:00
|
|
|
define KernelPackage/leds-wrap
|
2007-09-17 01:48:35 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2007-09-16 19:31:37 +00:00
|
|
|
TITLE:=PCengines WRAP LED support
|
2009-01-29 12:23:44 +00:00
|
|
|
DEPENDS:=@TARGET_x86 +kmod-scx200-gpio
|
2007-09-16 19:31:37 +00:00
|
|
|
KCONFIG:=CONFIG_LEDS_WRAP
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/leds-wrap.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,leds-wrap)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/leds-wrap/description
|
|
|
|
Kernel module for PCengines WRAP LEDs
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,leds-wrap))
|
|
|
|
|
|
|
|
|
2007-12-14 00:52:15 +00:00
|
|
|
define KernelPackage/leds-alix
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=PCengines ALIX LED support
|
|
|
|
DEPENDS:=@TARGET_x86
|
2009-11-05 16:11:45 +00:00
|
|
|
KCONFIG:=CONFIG_LEDS_ALIX2
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/leds/leds-alix2.$(LINUX_KMOD_SUFFIX)
|
2009-11-05 16:12:11 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,leds-alix2)
|
2007-12-14 00:52:15 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/leds-alix/description
|
|
|
|
Kernel module for PCengines ALIX LEDs
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,leds-alix))
|
|
|
|
|
|
|
|
|
2009-12-11 20:32:33 +00:00
|
|
|
define KernelPackage/leds-wndr3700-usb
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
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)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/leds-wndr3700-usb/description
|
|
|
|
Kernel module for the USB LED on the NETGWR WNDR3700 board.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,leds-wndr3700-usb))
|
|
|
|
|
|
|
|
|
2010-03-08 12:10:07 +00:00
|
|
|
define KernelPackage/leds-rb750
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
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)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/leds-rb750/description
|
|
|
|
Kernel module for the LEDs on the MikroTik RouterBOARD 750.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,leds-rb750))
|
|
|
|
|
|
|
|
|
2008-03-07 21:34:54 +00:00
|
|
|
define KernelPackage/ledtrig-netdev
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=LED NETDEV Trigger
|
|
|
|
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))
|
|
|
|
|
|
|
|
|
2007-10-20 14:32:13 +00:00
|
|
|
define KernelPackage/ledtrig-morse
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=LED Morse Trigger
|
|
|
|
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))
|
|
|
|
|
|
|
|
|
2008-08-05 09:52:23 +00:00
|
|
|
define KernelPackage/gpio-dev
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
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)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/gpio-dev/description
|
|
|
|
Kernel module to allows control of GPIO pins using a character device.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,gpio-dev))
|
|
|
|
|
|
|
|
|
2007-04-16 08:03:53 +00:00
|
|
|
define KernelPackage/nsc-gpio
|
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
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/nsc-gpio/description
|
|
|
|
Kernel module for Natsemi GPIO
|
|
|
|
endef
|
|
|
|
|
2007-04-16 08:03:53 +00:00
|
|
|
$(eval $(call KernelPackage,nsc-gpio))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-04-16 08:03:53 +00:00
|
|
|
define KernelPackage/scx200-gpio
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2007-04-16 08:03:53 +00:00
|
|
|
TITLE:=Natsemi SCX200 GPIO support
|
2009-01-29 11:32:20 +00:00
|
|
|
DEPENDS:=@TARGET_x86 +kmod-nsc-gpio
|
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
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/scx200-gpio/description
|
|
|
|
Kernel module for SCX200 GPIO
|
|
|
|
endef
|
|
|
|
|
2007-04-16 08:03:53 +00:00
|
|
|
$(eval $(call KernelPackage,scx200-gpio))
|
2006-10-19 04:35:29 +00:00
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-04-16 08:03:53 +00:00
|
|
|
define KernelPackage/scx200-wdt
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2007-04-16 08:03:53 +00:00
|
|
|
TITLE:=Natsemi SCX200 Watchdog support
|
2007-09-11 13:49:28 +00:00
|
|
|
DEPENDS:=@TARGET_x86
|
2009-03-05 21:45:59 +00:00
|
|
|
KCONFIG:=CONFIG_SCx200_WDT
|
2008-03-27 16:50:07 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/scx200_wdt.$(LINUX_KMOD_SUFFIX)
|
2007-05-20 11:50:53 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,scx200_wdt)
|
2007-04-16 08:03:53 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/scx200-wdt/description
|
|
|
|
Kernel module for SCX200 Watchdog
|
|
|
|
endef
|
|
|
|
|
2007-04-16 08:03:53 +00:00
|
|
|
$(eval $(call KernelPackage,scx200-wdt))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2008-11-28 18:04:36 +00:00
|
|
|
define KernelPackage/sc520-wdt
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Natsemi SC520 Watchdog support
|
|
|
|
DEPENDS:=@TARGET_x86
|
|
|
|
KCONFIG:=CONFIG_SC520_WDT
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/sc520_wdt.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,sc520_wdt)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sc520-wdt/description
|
|
|
|
Kernel module for SC520 Watchdog
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sc520-wdt))
|
|
|
|
|
|
|
|
|
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
|
2010-03-29 21:02:14 +00:00
|
|
|
DEPENDS:=@LINUX_2_6 @!TARGET_x86
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_INPUT
|
2007-05-27 18:51:50 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/input/input-core.$(LINUX_KMOD_SUFFIX)
|
2009-05-11 20:57:09 +00:00
|
|
|
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
|
2010-03-29 21:02:14 +00:00
|
|
|
DEPENDS:=+!TARGET_x86:kmod-input-core
|
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)
|
|
|
|
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
|
|
|
|
|
|
|
|
2008-04-20 21:01:03 +00:00
|
|
|
define KernelPackage/hid
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
2009-04-20 12:29:11 +00:00
|
|
|
TITLE:=HID Devices
|
2010-03-29 21:02:14 +00:00
|
|
|
DEPENDS:=+kmod-input-core +kmod-input-evdev @!TARGET_x86
|
2008-04-20 21:01:03 +00:00
|
|
|
KCONFIG:=CONFIG_HID
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/hid/hid.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,61,hid)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/hid/description
|
|
|
|
Kernel modules for HID devices
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,hid))
|
|
|
|
|
|
|
|
|
2008-04-07 19:54:44 +00:00
|
|
|
define KernelPackage/input-polldev
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Polled Input device support
|
2010-03-29 21:02:14 +00:00
|
|
|
DEPENDS:=+!TARGET_x86:kmod-input-core @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)
|
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))
|
|
|
|
|
|
|
|
|
2009-07-06 16:10:20 +00:00
|
|
|
define KernelPackage/input-gpio-keys
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=GPIO key support
|
2010-03-29 21:02:14 +00:00
|
|
|
DEPENDS:= @GPIO_SUPPORT +!TARGET_x86:kmod-input-core
|
2009-07-06 16:10:20 +00:00
|
|
|
KCONFIG:=CONFIG_KEYBOARD_GPIO
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/input/keyboard/gpio_keys.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,60,gpio_keys)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/input-gpio-keys/description
|
|
|
|
This driver implements support for buttons connected
|
|
|
|
to GPIO pins of various CPUs (and some other chips).
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,input-gpio-keys))
|
|
|
|
|
|
|
|
|
2008-04-07 19:54:44 +00:00
|
|
|
define KernelPackage/input-gpio-buttons
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Polled GPIO buttons input device
|
2008-04-29 17:21:08 +00:00
|
|
|
DEPENDS:=@GPIO_SUPPORT +kmod-input-polldev
|
2008-04-07 19:54:44 +00:00
|
|
|
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))
|
|
|
|
|
2009-04-20 12:31:00 +00:00
|
|
|
define KernelPackage/input-joydev
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Joystick device support
|
2010-03-29 21:02:14 +00:00
|
|
|
DEPENDS:=+!TARGET_x86:kmod-input-core
|
2009-04-20 12:31:00 +00:00
|
|
|
KCONFIG:=CONFIG_INPUT_JOYDEV
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/input/joydev.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,62,joydev)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/input-joydev/description
|
|
|
|
Kernel module for joystick support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,input-joydev))
|
|
|
|
|
2009-10-05 20:05:56 +00:00
|
|
|
define KernelPackage/input-rb532
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=RB532 button device support
|
|
|
|
DEPENDS:=+kmod-input-core @TARGET_rb532
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_INPUT_MISC=y \
|
|
|
|
CONFIG_INPUT_RB532_BUTTON
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/input/misc/rb532_button.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,62,rb532_button)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/input-rb532/description
|
|
|
|
Kernel module for RB532 button
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,input-rb532))
|
|
|
|
|
2008-04-07 19:54:44 +00:00
|
|
|
|
2008-03-29 05:16:10 +00:00
|
|
|
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
|
|
|
|
|
2008-03-29 05:30:43 +00:00
|
|
|
define KernelPackage/mmc-atmelmci/description
|
2008-03-29 05:16:10 +00:00
|
|
|
Kernel support for Atmel Multimedia Card Interface.
|
|
|
|
endef
|
|
|
|
|
2010-02-26 22:46:00 +00:00
|
|
|
$(eval $(call KernelPackage,mmc-atmelmci,1))
|
2008-03-29 05:16:10 +00:00
|
|
|
|
2009-03-08 19:21:55 +00:00
|
|
|
|
2009-01-07 11:07:51 +00:00
|
|
|
define KernelPackage/cs5535-gpio
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=AMD CS5535/CS5536 GPIO driver
|
2010-04-16 09:15:02 +00:00
|
|
|
DEPENDS:=@TARGET_x86
|
2009-01-07 11:07:51 +00:00
|
|
|
KCONFIG:=CONFIG_CS5535_GPIO
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/char/cs5535_gpio.$(LINUX_KMOD_SUFFIX)
|
2010-04-11 12:36:55 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,cs5535_gpio)
|
2009-01-07 11:07:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/cs5535-gpio/description
|
|
|
|
This package contains the AMD CS5535/CS5536 GPIO driver
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,cs5535-gpio))
|
2009-03-07 16:53:08 +00:00
|
|
|
|
|
|
|
|
2010-02-02 11:26:53 +00:00
|
|
|
define KernelPackage/ixp4xx-beeper
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=IXP4XX Beeper support
|
|
|
|
DEPENDS:=@TARGET_ixp4xx +kmod-input-core
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_INPUT_MISC=y \
|
|
|
|
CONFIG_INPUT_IXP4XX_BEEPER
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/input/misc/ixp4xx-beeper.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,ixp4xx-beeper)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/ixp4xx-beeper/description
|
|
|
|
IXP4XX Beeper support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,ixp4xx-beeper))
|
|
|
|
|
|
|
|
|
2009-03-07 16:53:08 +00:00
|
|
|
define KernelPackage/textsearch
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=Textsearch support is selected if needed
|
2010-01-23 17:07:59 +00:00
|
|
|
DEPENDS:=@LINUX_2_6
|
2009-03-07 16:53:08 +00:00
|
|
|
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))
|
|
|
|
|
2009-03-07 17:07:24 +00:00
|
|
|
|
|
|
|
define KernelPackage/rfkill
|
|
|
|
SUBMENU:=$(OTHER_MENU)
|
|
|
|
TITLE:=RF switch subsystem support
|
2010-04-16 09:15:02 +00:00
|
|
|
DEPENDS:=@TARGET_x86||TARGET_s3c24xx||TARGET_brcm47xx||TARGET_ar71xx
|
2009-03-07 17:07:24 +00:00
|
|
|
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
|
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
|
|
|
|
|
|
|
define KernelPackage/geodewdt
|
|
|
|
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
|
|
|
|
|
|
|
|
define KernelPackage/geodewdt/description
|
|
|
|
Kernel module for Geode watchdog timer.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,geodewdt))
|
|
|
|
|
|
|
|
define KernelPackage/pc8736x-gpio
|
|
|
|
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/pc8736x-gpio/description
|
|
|
|
Kernel module for PC8736x GPIO
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pc8736x-gpio))
|
|
|
|
|