2010-04-24 13:53:31 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
PCMCIA_MENU:=PCMCIA support
|
|
|
|
|
|
|
|
define KernelPackage/pcmcia-core
|
|
|
|
SUBMENU:=$(PCMCIA_MENU)
|
|
|
|
TITLE:=PCMCIA/CardBus support
|
|
|
|
DEPENDS:=@PCMCIA_SUPPORT
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_PCMCIA \
|
|
|
|
CONFIG_CARDBUS \
|
|
|
|
CONFIG_PCCARD \
|
|
|
|
PCMCIA_DEBUG=n
|
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/drivers/pcmcia/pcmcia_core.ko \
|
|
|
|
$(LINUX_DIR)/drivers/pcmcia/pcmcia.ko
|
2010-04-24 13:53:31 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,25,pcmcia_core pcmcia)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pcmcia-core/description
|
|
|
|
Kernel support for PCMCIA/CardBus controllers
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pcmcia-core))
|
|
|
|
|
2011-06-21 20:52:53 +00:00
|
|
|
define KernelPackage/pcmcia-rsrc
|
2010-04-24 13:53:31 +00:00
|
|
|
SUBMENU:=$(PCMCIA_MENU)
|
2011-06-21 20:52:53 +00:00
|
|
|
TITLE:=PCMCIA resource support
|
2010-06-26 20:44:28 +00:00
|
|
|
DEPENDS:=kmod-pcmcia-core
|
2011-06-21 20:52:53 +00:00
|
|
|
KCONFIG:=CONFIG_PCCARD_NONSTATIC=y
|
2010-08-19 12:49:56 +00:00
|
|
|
# For Linux 2.6.35+
|
|
|
|
ifneq ($(wildcard $(LINUX_DIR)/drivers/pcmcia/pcmcia_rsrc.ko),)
|
2011-06-21 20:52:53 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/pcmcia/pcmcia_rsrc.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,26,pcmcia_rsrc)
|
2010-07-11 19:39:30 +00:00
|
|
|
else
|
2011-06-21 20:52:53 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/pcmcia/rsrc_nonstatic.ko \
|
|
|
|
AUTOLOAD:=$(call AutoLoad,26,rsrc_nonstatic)
|
2010-07-11 19:39:30 +00:00
|
|
|
endif
|
2010-04-24 13:53:31 +00:00
|
|
|
endef
|
|
|
|
|
2011-06-21 20:52:53 +00:00
|
|
|
define KernelPackage/pcmcia-rsrc/description
|
|
|
|
Kernel support for PCMCIA resource allocation
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pcmcia-rsrc))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/pcmcia-yenta
|
|
|
|
SUBMENU:=$(PCMCIA_MENU)
|
|
|
|
TITLE:=yenta socket driver
|
|
|
|
DEPENDS:=kmod-pcmcia-rsrc
|
|
|
|
KCONFIG:=CONFIG_YENTA
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/pcmcia/yenta_socket.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,41,pcmcia_rsrc yenta_socket)
|
|
|
|
endef
|
|
|
|
|
2010-04-24 13:53:31 +00:00
|
|
|
$(eval $(call KernelPackage,pcmcia-yenta))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/pcmcia-serial
|
|
|
|
SUBMENU:=$(PCMCIA_MENU)
|
|
|
|
TITLE:=Serial devices support
|
|
|
|
DEPENDS:=kmod-pcmcia-core
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_PCMCIA_SERIAL_CS \
|
|
|
|
CONFIG_SERIAL_8250_CS
|
2011-03-19 17:42:48 +00:00
|
|
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.38)),1)
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/tty/serial/serial_cs.ko
|
|
|
|
else
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/serial/serial_cs.ko
|
|
|
|
endif
|
2010-04-24 13:53:31 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,45,serial_cs)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pcmcia-serial/description
|
|
|
|
Kernel support for PCMCIA/CardBus serial devices
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pcmcia-serial))
|