diff options
| author | acinonyx <acinonyx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-20 13:49:58 +0000 | 
|---|---|---|
| committer | acinonyx <acinonyx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-20 13:49:58 +0000 | 
| commit | fae902def7e748797948a23f49be7f6e93c25058 (patch) | |
| tree | 4f433a453e6e2bb395a90c4b3b840855f0b6a566 | |
| parent | a452106e886da8d6d8b6d4e0256b125542b72692 (diff) | |
[package] pcmcia-core: Fix missing rsrc_nonstatic module (closes #5380)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16935 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | package/kernel/modules/other.mk | 11 | 
1 files changed, 6 insertions, 5 deletions
| diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index fdadfa10e..3844068b7 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -151,9 +151,8 @@ define KernelPackage/pcmcia-core/2.6  #	PCMCIA_DEBUG=n    FILES:= \  	$(LINUX_DIR)/drivers/pcmcia/pcmcia_core.$(LINUX_KMOD_SUFFIX) \ -	$(LINUX_DIR)/drivers/pcmcia/pcmcia.$(LINUX_KMOD_SUFFIX) \ -	$(LINUX_DIR)/drivers/pcmcia/rsrc_nonstatic.$(LINUX_KMOD_SUFFIX) -  AUTOLOAD:=$(call AutoLoad,25,pcmcia_core pcmcia rsrc_nonstatic) +	$(LINUX_DIR)/drivers/pcmcia/pcmcia.$(LINUX_KMOD_SUFFIX) +  AUTOLOAD:=$(call AutoLoad,25,pcmcia_core pcmcia)  endef  define KernelPackage/pcmcia-core/description @@ -168,8 +167,10 @@ define KernelPackage/pcmcia-yenta    TITLE:=yenta socket driver    DEPENDS:=kmod-pcmcia-core    KCONFIG:=CONFIG_YENTA -  FILES:=$(LINUX_DIR)/drivers/pcmcia/yenta_socket.$(LINUX_KMOD_SUFFIX) -  AUTOLOAD:=$(call AutoLoad,41,yenta_socket) +  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)  endef  $(eval $(call KernelPackage,pcmcia-yenta)) | 
