| 1 | # |
| 2 | # Copyright (C) 2006 OpenWrt.org |
| 3 | # |
| 4 | # This is free software, licensed under the GNU General Public License v2. |
| 5 | # See /LICENSE for more information. |
| 6 | # |
| 7 | |
| 8 | include $(TOPDIR)/rules.mk |
| 9 | include $(INCLUDE_DIR)/kernel.mk |
| 10 | |
| 11 | PKG_NAME:=hostap-driver |
| 12 | PKG_VERSION:=0.4.9 |
| 13 | PKG_RELEASE:=1 |
| 14 | |
| 15 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |
| 16 | PKG_SOURCE_URL:=http://hostap.epitest.fi/releases/ |
| 17 | PKG_MD5SUM:=c7534dc040ab90218257a78488ecd378 |
| 18 | |
| 19 | include $(INCLUDE_DIR)/package.mk |
| 20 | ifeq ($(DUMP),) |
| 21 | -include $(LINUX_DIR)/.config |
| 22 | endif |
| 23 | |
| 24 | define KernelPackage/hostap/Default/2.4 |
| 25 | VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE) |
| 26 | endef |
| 27 | |
| 28 | define KernelPackage/hostap/Default/2.6 |
| 29 | VERSION:=$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE) |
| 30 | endef |
| 31 | |
| 32 | define KernelPackage/hostap/Default |
| 33 | $(call KernelPackage/hostap/Default/$(KERNEL)) |
| 34 | SUBMENU:=Wireless Drivers |
| 35 | URL:=http://hostap.epitest.fi/ |
| 36 | endef |
| 37 | |
| 38 | define KernelPackage/hostap/Default/description |
| 39 | Host AP is a driver for 802.11b wireless cards based on Intersil |
| 40 | Prism2/2.5/3 chipset. It supports so called Host AP mode that allows the |
| 41 | card to act as an IEEE 802.11 access point. |
| 42 | endef |
| 43 | |
| 44 | |
| 45 | define KernelPackage/hostap |
| 46 | $(call KernelPackage/hostap/Default) |
| 47 | TITLE:=Host AP support for Prism2/2.5/3 |
| 48 | DEPENDS:=@PCI_SUPPORT||PCMCIA_SUPPORT +LINUX_2_6:kmod-lib80211 +wireless-tools |
| 49 | KCONFIG:=CONFIG_HOSTAP CONFIG_HOSTAP_FIRMWARE=y CONFIG_HOSTAP_FIRMWARE_NVRAM=y |
| 50 | endef |
| 51 | |
| 52 | define KernelPackage/hostap/2.4 |
| 53 | # NOTE: needed to remove the dependency on kmod-ieee80211 in the final ipkg |
| 54 | DEPENDS:= |
| 55 | # NOTE: needed to build the standalone version on 2.4 |
| 56 | KCONFIG:= |
| 57 | FILES:= \ |
| 58 | $(PKG_BUILD_DIR)/driver/modules/hostap.$(LINUX_KMOD_SUFFIX) \ |
| 59 | $(PKG_BUILD_DIR)/driver/modules/hostap_crypt_ccmp.$(LINUX_KMOD_SUFFIX) \ |
| 60 | $(PKG_BUILD_DIR)/driver/modules/hostap_crypt_tkip.$(LINUX_KMOD_SUFFIX) \ |
| 61 | $(PKG_BUILD_DIR)/driver/modules/hostap_crypt_wep.$(LINUX_KMOD_SUFFIX) |
| 62 | AUTOLOAD:=$(call AutoLoad,60,hostap hostap_crypt_wep hostap_crypt_tkip hostap_crypt_ccmp) |
| 63 | endef |
| 64 | |
| 65 | define KernelPackage/hostap/2.6 |
| 66 | FILES:= \ |
| 67 | $(LINUX_DIR)/drivers/net/wireless/hostap/hostap.$(LINUX_KMOD_SUFFIX) |
| 68 | AUTOLOAD:=$(call AutoLoad,60,hostap) |
| 69 | endef |
| 70 | |
| 71 | define KernelPackage/hostap/description |
| 72 | $(call KernelPackage/hostap/Default/description) |
| 73 | This package contains the base Host AP driver code that is shared by |
| 74 | different hardware models. You will also need to enable support for |
| 75 | PLX/PCI/CS version of the driver to actually use the driver. |
| 76 | endef |
| 77 | |
| 78 | |
| 79 | define KernelPackage/hostap-cs |
| 80 | $(call KernelPackage/hostap/Default) |
| 81 | TITLE:=Host AP driver for PCMCIA adaptors |
| 82 | DEPENDS:=@PCMCIA_SUPPORT +kmod-hostap +kmod-pcmcia-core |
| 83 | KCONFIG:=CONFIG_HOSTAP_CS |
| 84 | AUTOLOAD:=$(call AutoLoad,60,hostap_cs) |
| 85 | endef |
| 86 | define KernelPackage/hostap-cs/2.4 |
| 87 | # NOTE: needed to build the standalone version on 2.4 |
| 88 | KCONFIG:= |
| 89 | FILES:= \ |
| 90 | $(PKG_BUILD_DIR)/driver/modules/hostap_cs.$(LINUX_KMOD_SUFFIX) |
| 91 | endef |
| 92 | define KernelPackage/hostap-cs/2.6 |
| 93 | FILES:= \ |
| 94 | $(LINUX_DIR)/drivers/net/wireless/hostap/hostap_cs.$(LINUX_KMOD_SUFFIX) |
| 95 | endef |
| 96 | |
| 97 | define KernelPackage/hostap-cs/description |
| 98 | $(call KernelPackage/hostap/Default/description) |
| 99 | This package contains the Host AP driver for Prism2/2.5/3 PC cards. |
| 100 | endef |
| 101 | |
| 102 | |
| 103 | define KernelPackage/hostap-pci |
| 104 | $(call KernelPackage/hostap/Default) |
| 105 | TITLE:=Host AP driver for PCI adaptors |
| 106 | DEPENDS:=@PCI_SUPPORT +kmod-hostap |
| 107 | KCONFIG:=CONFIG_HOSTAP_PCI |
| 108 | AUTOLOAD:=$(call AutoLoad,60,hostap_pci) |
| 109 | endef |
| 110 | |
| 111 | define KernelPackage/hostap-pci/2.4 |
| 112 | # NOTE: needed to build the standalone version on 2.4 |
| 113 | KCONFIG:= |
| 114 | FILES:= \ |
| 115 | $(PKG_BUILD_DIR)/driver/modules/hostap_pci.$(LINUX_KMOD_SUFFIX) |
| 116 | endef |
| 117 | |
| 118 | define KernelPackage/hostap-pci/2.6 |
| 119 | FILES:= \ |
| 120 | $(LINUX_DIR)/drivers/net/wireless/hostap/hostap_pci.$(LINUX_KMOD_SUFFIX) |
| 121 | endef |
| 122 | |
| 123 | define KernelPackage/hostap-pci/description |
| 124 | $(call KernelPackage/hostap/Default/description) |
| 125 | This package contains the Host AP driver for Prism2.5 PCI adaptors. |
| 126 | endef |
| 127 | |
| 128 | |
| 129 | define KernelPackage/hostap-plx |
| 130 | $(call KernelPackage/hostap/Default) |
| 131 | TITLE:=Host AP driver for PLX9052 based PCI adaptors |
| 132 | DEPENDS:=@PCI_SUPPORT +kmod-hostap |
| 133 | KCONFIG:=CONFIG_HOSTAP_PLX |
| 134 | AUTOLOAD:=$(call AutoLoad,60,hostap_plx) |
| 135 | endef |
| 136 | |
| 137 | define KernelPackage/hostap-plx/2.4 |
| 138 | # NOTE: needed to build the standalone version on 2.4 |
| 139 | KCONFIG:= |
| 140 | FILES:= \ |
| 141 | $(PKG_BUILD_DIR)/driver/modules/hostap_plx.$(LINUX_KMOD_SUFFIX) |
| 142 | endef |
| 143 | |
| 144 | define KernelPackage/hostap-plx/2.6 |
| 145 | FILES:= \ |
| 146 | $(LINUX_DIR)/drivers/net/wireless/hostap/hostap_plx.$(LINUX_KMOD_SUFFIX) |
| 147 | endef |
| 148 | |
| 149 | define KernelPackage/hostap-plx/description |
| 150 | $(call KernelPackage/hostap/Default/description) |
| 151 | This package contains the Host AP driver for Prism2/2.5/3 in PLX9052 |
| 152 | based PCI adaptors. |
| 153 | endef |
| 154 | |
| 155 | |
| 156 | ifeq ($(KERNEL),2.4) |
| 157 | define Build/Compile |
| 158 | $(MAKE) -C $(LINUX_DIR)/ \ |
| 159 | ARCH="$(LINUX_KARCH)" \ |
| 160 | CROSS_COMPILE="$(TARGET_CROSS)" \ |
| 161 | SUBDIRS="$(PKG_BUILD_DIR)/driver/modules" \ |
| 162 | modules |
| 163 | endef |
| 164 | else |
| 165 | define Build/Prepare |
| 166 | mkdir -p $(PKG_BUILD_DIR) |
| 167 | endef |
| 168 | |
| 169 | define Build/Configure |
| 170 | endef |
| 171 | |
| 172 | define Build/Compile |
| 173 | endef |
| 174 | endif |
| 175 | |
| 176 | define KernelPackage/hostap/install |
| 177 | $(INSTALL_DIR) $(1)/lib/wifi |
| 178 | $(INSTALL_DATA) ./files/lib/wifi/hostap.sh $(1)/lib/wifi |
| 179 | endef |
| 180 | |
| 181 | $(eval $(call KernelPackage,hostap)) |
| 182 | $(eval $(call KernelPackage,hostap-cs)) |
| 183 | $(eval $(call KernelPackage,hostap-pci)) |
| 184 | $(eval $(call KernelPackage,hostap-plx)) |
| 185 | |