From: Vasilis Tsiligiannis Date: Mon, 20 Jul 2009 13:49:58 +0000 (+0000) Subject: [package] pcmcia-core: Fix missing rsrc_nonstatic module (closes #5380) X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=fa422acdddd7ac0c15639adffe3fc937882fbed4;p=openwrt%2Fsvn-archive%2Farchive.git [package] pcmcia-core: Fix missing rsrc_nonstatic module (closes #5380) SVN-Revision: 16935 --- diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index fdadfa10e1..3844068b79 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))