diff options
author | Alexandros C. Couloumbis <alex@ozo.com> | 2010-03-22 11:39:47 +0000 |
---|---|---|
committer | Alexandros C. Couloumbis <alex@ozo.com> | 2010-03-22 11:39:47 +0000 |
commit | 81cfa6d2b1a902569ed2fe429bcfe2702bf86f37 (patch) | |
tree | f46b813a420c5394528e074c213a33e84262a3b8 | |
parent | 90038ee909537167ec7596cb7b5ee13137d3c544 (diff) | |
download | master-187ad058-81cfa6d2b1a902569ed2fe429bcfe2702bf86f37.tar.gz master-187ad058-81cfa6d2b1a902569ed2fe429bcfe2702bf86f37.tar.bz2 master-187ad058-81cfa6d2b1a902569ed2fe429bcfe2702bf86f37.zip |
hostap-driver: fix DEPENDS on Makefile
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20366 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/hostap-driver/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/hostap-driver/Makefile b/package/hostap-driver/Makefile index f78d7877d9..0867672b8a 100644 --- a/package/hostap-driver/Makefile +++ b/package/hostap-driver/Makefile @@ -79,7 +79,7 @@ endef define KernelPackage/hostap-cs $(call KernelPackage/hostap/Default) TITLE:=Host AP driver for PCMCIA adaptors - DEPENDS:=@PCMCIA_SUPPORT kmod-hostap +kmod-pcmcia-core + DEPENDS:=@PCMCIA_SUPPORT +kmod-hostap +kmod-pcmcia-core KCONFIG:=CONFIG_HOSTAP_CS AUTOLOAD:=$(call AutoLoad,60,hostap_cs) endef @@ -103,7 +103,7 @@ endef define KernelPackage/hostap-pci $(call KernelPackage/hostap/Default) TITLE:=Host AP driver for PCI adaptors - DEPENDS:= kmod-hostap + DEPENDS:=@@PCI_SUPPORT +kmod-hostap KCONFIG:=CONFIG_HOSTAP_PCI AUTOLOAD:=$(call AutoLoad,60,hostap_pci) endef @@ -129,7 +129,7 @@ endef define KernelPackage/hostap-plx $(call KernelPackage/hostap/Default) TITLE:=Host AP driver for PLX9052 based PCI adaptors - DEPENDS:=@PCI_SUPPORT kmod-hostap + DEPENDS:=@PCI_SUPPORT +kmod-hostap KCONFIG:=CONFIG_HOSTAP_PLX AUTOLOAD:=$(call AutoLoad,60,hostap_plx) endef |