diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-03-11 16:37:11 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-03-11 16:37:11 +0000 |
commit | c3ddcedf4a2e1c4597d7c2d1f06a82b36df62695 (patch) | |
tree | c329f516171495b449834bad411708b20fa759f7 | |
parent | ff96ad6b8bddc9243cb3c441a47fa296364c6159 (diff) | |
download | upstream-c3ddcedf4a2e1c4597d7c2d1f06a82b36df62695.tar.gz upstream-c3ddcedf4a2e1c4597d7c2d1f06a82b36df62695.tar.bz2 upstream-c3ddcedf4a2e1c4597d7c2d1f06a82b36df62695.zip |
kernel: fix kmod-pcmcia-yenta on 2.4
SVN-Revision: 20147
-rw-r--r-- | package/kernel/modules/other.mk | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index d3f1df832c..6c7f42c759 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -170,7 +170,19 @@ define KernelPackage/pcmcia-yenta SUBMENU:=$(OTHER_MENU) TITLE:=yenta socket driver DEPENDS:=kmod-pcmcia-core - KCONFIG:=CONFIG_YENTA + KCONFIG:= \ + CONFIG_PCMCIA \ + CONFIG_CARDBUS \ + CONFIG_YENTA +endef + +define KernelPackage/pcmcia-yenta/2.4 + FILES:= \ + $(LINUX_DIR)/drivers/pcmcia/yenta_socket.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,41,yenta_socket) +endef + +define KernelPackage/pcmcia-yenta/2.6 FILES:= \ $(LINUX_DIR)/drivers/pcmcia/rsrc_nonstatic.$(LINUX_KMOD_SUFFIX) \ $(LINUX_DIR)/drivers/pcmcia/yenta_socket.$(LINUX_KMOD_SUFFIX) @@ -179,6 +191,7 @@ endef $(eval $(call KernelPackage,pcmcia-yenta)) + define KernelPackage/pcmcia-au1000 SUBMENU:=$(OTHER_MENU) TITLE:=RMI/AMD Au1000 PCMCIA support |