diff options
author | Florian Fainelli <florian@openwrt.org> | 2011-06-21 20:52:53 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2011-06-21 20:52:53 +0000 |
commit | 3f0f8d9c87cc53042f444a0c00c87df630092d31 (patch) | |
tree | 5c8455ee7d5020720245266ff9ff0c49d4df2acc /package/kernel | |
parent | a9191c8b32520ae269d57cfd119b9e980b5249c8 (diff) | |
download | upstream-3f0f8d9c87cc53042f444a0c00c87df630092d31.tar.gz upstream-3f0f8d9c87cc53042f444a0c00c87df630092d31.tar.bz2 upstream-3f0f8d9c87cc53042f444a0c00c87df630092d31.zip |
fix and make usable kmod-pcmcia-rsrc
This module is also needed for e.g: kmod-bcm63xx-pcmcia
SVN-Revision: 27253
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/modules/pcmcia.mk | 37 |
1 files changed, 23 insertions, 14 deletions
diff --git a/package/kernel/modules/pcmcia.mk b/package/kernel/modules/pcmcia.mk index 468a62f0a0..e4df2aa395 100644 --- a/package/kernel/modules/pcmcia.mk +++ b/package/kernel/modules/pcmcia.mk @@ -28,28 +28,37 @@ endef $(eval $(call KernelPackage,pcmcia-core)) - -define KernelPackage/pcmcia-yenta +define KernelPackage/pcmcia-rsrc SUBMENU:=$(PCMCIA_MENU) - TITLE:=yenta socket driver + TITLE:=PCMCIA resource support DEPENDS:=kmod-pcmcia-core - KCONFIG:= \ - CONFIG_PCCARD_NONSTATIC \ - CONFIG_YENTA + 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 \ - $(LINUX_DIR)/drivers/pcmcia/yenta_socket.ko - AUTOLOAD:=$(call AutoLoad,41,pcmcia_rsrc yenta_socket) + FILES:=$(LINUX_DIR)/drivers/pcmcia/pcmcia_rsrc.ko + AUTOLOAD:=$(call AutoLoad,26,pcmcia_rsrc) else - FILES:= \ - $(LINUX_DIR)/drivers/pcmcia/rsrc_nonstatic.ko \ - $(LINUX_DIR)/drivers/pcmcia/yenta_socket.ko - AUTOLOAD:=$(call AutoLoad,41,rsrc_nonstatic yenta_socket) + 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 + 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 + $(eval $(call KernelPackage,pcmcia-yenta)) |