X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=blobdiff_plain;f=package%2Fhostap-driver%2FMakefile;h=c77f56ed0423b11152c97a6ff85cab087bfeb4ed;hp=b784131a1d3aaf9cb9344d5d04087543b8688c32;hb=796a9d1091884a07817e5c140d0ff6a0b8c76235;hpb=f877fc28f803080de2e7c0682878186ba3ea7cfa diff --git a/package/hostap-driver/Makefile b/package/hostap-driver/Makefile index b784131a1..c77f56ed0 100644 --- a/package/hostap-driver/Makefile +++ b/package/hostap-driver/Makefile @@ -4,7 +4,6 @@ # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -# $Id$ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk @@ -25,9 +24,11 @@ endif define KernelPackage/hostap/Default/2.4 VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE) endef + define KernelPackage/hostap/Default/2.6 VERSION:=$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE) endef + define KernelPackage/hostap/Default $(call KernelPackage/hostap/Default/$(KERNEL)) SUBMENU:=Wireless Drivers @@ -40,14 +41,19 @@ define KernelPackage/hostap/Default/description card to act as an IEEE 802.11 access point. endef + define KernelPackage/hostap $(call KernelPackage/hostap/Default) - DEPENDS:=@PCI_SUPPORT||PCMCIA_SUPPORT +kmod-ieee80211 +kmod-crypto TITLE:=Host AP support for Prism2/2.5/3 + DEPENDS:=@PCI_SUPPORT||PCMCIA_SUPPORT +kmod-ieee80211 +wireless-tools KCONFIG:=CONFIG_HOSTAP endef + define KernelPackage/hostap/2.4 - DEPENDS:=+kmod-crypto +# NOTE: needed to remove the dependency on kmod-ieee80211 in the final ipkg + DEPENDS:= +# NOTE: needed to build the standalone version on 2.4 + KCONFIG:= FILES:= \ $(PKG_BUILD_DIR)/driver/modules/hostap.$(LINUX_KMOD_SUFFIX) \ $(PKG_BUILD_DIR)/driver/modules/hostap_crypt_ccmp.$(LINUX_KMOD_SUFFIX) \ @@ -55,6 +61,7 @@ define KernelPackage/hostap/2.4 $(PKG_BUILD_DIR)/driver/modules/hostap_crypt_wep.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,60,hostap hostap_crypt_wep hostap_crypt_tkip hostap_crypt_ccmp) endef + define KernelPackage/hostap/2.6 FILES:= \ $(LINUX_DIR)/drivers/net/wireless/hostap/hostap.$(LINUX_KMOD_SUFFIX) @@ -68,17 +75,46 @@ $(call KernelPackage/hostap/Default/description) PLX/PCI/CS version of the driver to actually use the driver. endef + +define KernelPackage/hostap-cs +$(call KernelPackage/hostap/Default) + TITLE:=Host AP driver for PCMCIA adaptors + DEPENDS:=@PCMCIA_SUPPORT kmod-hostap +kmod-pcmcia-core + KCONFIG:=CONFIG_HOSTAP_CS + AUTOLOAD:=$(call AutoLoad,60,hostap_cs) +endef +define KernelPackage/hostap-cs/2.4 +# NOTE: needed to build the standalone version on 2.4 + KCONFIG:= + FILES:= \ + $(PKG_BUILD_DIR)/driver/modules/hostap_cs.$(LINUX_KMOD_SUFFIX) +endef +define KernelPackage/hostap-cs/2.6 + FILES:= \ + $(LINUX_DIR)/drivers/net/wireless/hostap/hostap_cs.$(LINUX_KMOD_SUFFIX) +endef + +define KernelPackage/hostap-cs/description +$(call KernelPackage/hostap/Default/description) + This package contains the Host AP driver for Prism2/2.5/3 PC cards. +endef + + define KernelPackage/hostap-pci $(call KernelPackage/hostap/Default) - DEPENDS:=@PCI_SUPPORT kmod-hostap TITLE:=Host AP driver for PCI adaptors + DEPENDS:=@PCI_SUPPORT kmod-hostap KCONFIG:=CONFIG_HOSTAP_PCI AUTOLOAD:=$(call AutoLoad,60,hostap_pci) endef + define KernelPackage/hostap-pci/2.4 +# NOTE: needed to build the standalone version on 2.4 + KCONFIG:= FILES:= \ $(PKG_BUILD_DIR)/driver/modules/hostap_pci.$(LINUX_KMOD_SUFFIX) endef + define KernelPackage/hostap-pci/2.6 FILES:= \ $(LINUX_DIR)/drivers/net/wireless/hostap/hostap_pci.$(LINUX_KMOD_SUFFIX) @@ -89,17 +125,22 @@ $(call KernelPackage/hostap/Default/description) This package contains the Host AP driver for Prism2.5 PCI adaptors. endef + define KernelPackage/hostap-plx $(call KernelPackage/hostap/Default) + TITLE:=Host AP driver for PLX9052 based PCI adaptors DEPENDS:=@PCI_SUPPORT kmod-hostap KCONFIG:=CONFIG_HOSTAP_PLX - TITLE:=Host AP driver for PLX9052 based PCI adaptors AUTOLOAD:=$(call AutoLoad,60,hostap_plx) endef + define KernelPackage/hostap-plx/2.4 +# NOTE: needed to build the standalone version on 2.4 + KCONFIG:= FILES:= \ $(PKG_BUILD_DIR)/driver/modules/hostap_plx.$(LINUX_KMOD_SUFFIX) endef + define KernelPackage/hostap-plx/2.6 FILES:= \ $(LINUX_DIR)/drivers/net/wireless/hostap/hostap_plx.$(LINUX_KMOD_SUFFIX) @@ -132,7 +173,17 @@ else endef endif +define KernelPackage/hostap-pci/install + $(INSTALL_DIR) $(1)/lib/wifi + $(INSTALL_DATA) ./files/lib/wifi/hostap.sh $(1)/lib/wifi +endef + +define KernelPackage/hostap-plx/install + $(INSTALL_DIR) $(1)/lib/wifi + $(INSTALL_DATA) ./files/lib/wifi/hostap.sh $(1)/lib/wifi +endef $(eval $(call KernelPackage,hostap)) +$(eval $(call KernelPackage,hostap-cs)) $(eval $(call KernelPackage,hostap-pci)) $(eval $(call KernelPackage,hostap-plx))