summaryrefslogtreecommitdiff
path: root/package/kernel/modules/other.mk
diff options
context:
space:
mode:
authorVasilis Tsiligiannis <acinonyx@openwrt.gr>2009-07-20 13:49:58 +0000
committerVasilis Tsiligiannis <acinonyx@openwrt.gr>2009-07-20 13:49:58 +0000
commit240bce09865e94eea237fe668a86d96bd2933cc8 (patch)
tree1a22c562dcef97b0e68b6720628615d62904798c /package/kernel/modules/other.mk
parentc7fdb609e42df6a95f08c0003f1f772540e07249 (diff)
downloadmtk-20170518-240bce09865e94eea237fe668a86d96bd2933cc8.zip
mtk-20170518-240bce09865e94eea237fe668a86d96bd2933cc8.tar.gz
mtk-20170518-240bce09865e94eea237fe668a86d96bd2933cc8.tar.bz2
pcmcia-core: Fix missing rsrc_nonstatic module (closes #5380)
SVN-Revision: 16935
Diffstat (limited to 'package/kernel/modules/other.mk')
-rw-r--r--package/kernel/modules/other.mk11
1 files changed, 6 insertions, 5 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk
index fdadfa1..3844068 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))