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