mirror of https://github.com/hak5/openwrt-owl.git
fix and make usable kmod-pcmcia-rsrc
This module is also needed for e.g: kmod-bcm63xx-pcmcia SVN-Revision: 27253owl
parent
a9191c8b32
commit
3f0f8d9c87
|
@ -28,26 +28,35 @@ endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,pcmcia-core))
|
$(eval $(call KernelPackage,pcmcia-core))
|
||||||
|
|
||||||
|
define KernelPackage/pcmcia-rsrc
|
||||||
|
SUBMENU:=$(PCMCIA_MENU)
|
||||||
|
TITLE:=PCMCIA resource support
|
||||||
|
DEPENDS:=kmod-pcmcia-core
|
||||||
|
KCONFIG:=CONFIG_PCCARD_NONSTATIC=y
|
||||||
|
# For Linux 2.6.35+
|
||||||
|
ifneq ($(wildcard $(LINUX_DIR)/drivers/pcmcia/pcmcia_rsrc.ko),)
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/pcmcia/pcmcia_rsrc.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,26,pcmcia_rsrc)
|
||||||
|
else
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/pcmcia/rsrc_nonstatic.ko \
|
||||||
|
AUTOLOAD:=$(call AutoLoad,26,rsrc_nonstatic)
|
||||||
|
endif
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/pcmcia-rsrc/description
|
||||||
|
Kernel support for PCMCIA resource allocation
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,pcmcia-rsrc))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/pcmcia-yenta
|
define KernelPackage/pcmcia-yenta
|
||||||
SUBMENU:=$(PCMCIA_MENU)
|
SUBMENU:=$(PCMCIA_MENU)
|
||||||
TITLE:=yenta socket driver
|
TITLE:=yenta socket driver
|
||||||
DEPENDS:=kmod-pcmcia-core
|
DEPENDS:=kmod-pcmcia-rsrc
|
||||||
KCONFIG:= \
|
KCONFIG:=CONFIG_YENTA
|
||||||
CONFIG_PCCARD_NONSTATIC \
|
FILES:=$(LINUX_DIR)/drivers/pcmcia/yenta_socket.ko
|
||||||
CONFIG_YENTA
|
|
||||||
# For Linux 2.6.35+
|
|
||||||
ifneq ($(wildcard $(LINUX_DIR)/drivers/pcmcia/pcmcia_rsrc.ko),)
|
|
||||||
FILES:= \
|
|
||||||
$(LINUX_DIR)/drivers/pcmcia/pcmcia_rsrc.ko \
|
|
||||||
$(LINUX_DIR)/drivers/pcmcia/yenta_socket.ko
|
|
||||||
AUTOLOAD:=$(call AutoLoad,41,pcmcia_rsrc yenta_socket)
|
AUTOLOAD:=$(call AutoLoad,41,pcmcia_rsrc yenta_socket)
|
||||||
else
|
|
||||||
FILES:= \
|
|
||||||
$(LINUX_DIR)/drivers/pcmcia/rsrc_nonstatic.ko \
|
|
||||||
$(LINUX_DIR)/drivers/pcmcia/yenta_socket.ko
|
|
||||||
AUTOLOAD:=$(call AutoLoad,41,rsrc_nonstatic yenta_socket)
|
|
||||||
endif
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,pcmcia-yenta))
|
$(eval $(call KernelPackage,pcmcia-yenta))
|
||||||
|
|
|
@ -24,7 +24,7 @@ $(eval $(call KernelPackage,bcm63xx-spi))
|
||||||
define KernelPackage/pcmcia-bcm63xx
|
define KernelPackage/pcmcia-bcm63xx
|
||||||
SUBMENU:=$(PCMCIA_MENU)
|
SUBMENU:=$(PCMCIA_MENU)
|
||||||
TITLE:=Broadcom BCM63xx PCMCIA support
|
TITLE:=Broadcom BCM63xx PCMCIA support
|
||||||
DEPENDS:=@TARGET_brcm63xx kmod-pcmcia-core
|
DEPENDS:=@TARGET_brcm63xx +kmod-pcmcia-rsrc
|
||||||
KCONFIG:=CONFIG_PCMCIA_BCM63XX
|
KCONFIG:=CONFIG_PCMCIA_BCM63XX
|
||||||
FILES:=$(LINUX_DIR)/drivers/pcmcia/bcm63xx_pcmcia.ko
|
FILES:=$(LINUX_DIR)/drivers/pcmcia/bcm63xx_pcmcia.ko
|
||||||
AUTOLOAD:=$(call AutoLoad,41,bcm63xx_pcmcia)
|
AUTOLOAD:=$(call AutoLoad,41,bcm63xx_pcmcia)
|
||||||
|
|
Loading…
Reference in New Issue