2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
10 include $(INCLUDE_DIR
)/kernel.mk
12 PKG_NAME
:=hostap-driver
16 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
17 PKG_SOURCE_URL
:=http
://hostap.epitest.fi
/releases
/
18 PKG_MD5SUM
:=c7534dc040ab90218257a78488ecd378
20 include $(INCLUDE_DIR
)/package.mk
22 -include $(LINUX_DIR
)/.config
25 define KernelPackage
/hostap
/Default
/2.4
26 VERSION
:=$(LINUX_VERSION
)+$(PKG_VERSION
)-$(BOARD
)-$(PKG_RELEASE
)
29 define KernelPackage
/hostap
/Default
/2.6
30 VERSION
:=$(LINUX_VERSION
)-$(BOARD
)-$(PKG_RELEASE
)
33 define KernelPackage
/hostap
/Default
34 $(call KernelPackage
/hostap
/Default
/$(KERNEL
))
35 SUBMENU
:=Wireless Drivers
36 URL
:=http
://hostap.epitest.fi
/
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.
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
53 define KernelPackage
/hostap
/2.4
54 # NOTE: needed to remove the dependency on kmod-ieee80211 in the final ipkg
56 # NOTE: needed to build the standalone version on 2.4
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
)
66 define KernelPackage
/hostap
/2.6
68 $(LINUX_DIR
)/drivers
/net
/wireless
/hostap
/hostap.
$(LINUX_KMOD_SUFFIX
)
69 AUTOLOAD
:=$(call AutoLoad
,60,hostap
)
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.
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
)
87 define KernelPackage
/hostap-cs
/2.4
88 # NOTE: needed to build the standalone version on 2.4
91 $(PKG_BUILD_DIR
)/driver
/modules
/hostap_cs.
$(LINUX_KMOD_SUFFIX
)
93 define KernelPackage
/hostap-cs
/2.6
95 $(LINUX_DIR
)/drivers
/net
/wireless
/hostap
/hostap_cs.
$(LINUX_KMOD_SUFFIX
)
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.
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
)
112 define KernelPackage
/hostap-pci
/2.4
113 # NOTE: needed to build the standalone version on 2.4
116 $(PKG_BUILD_DIR
)/driver
/modules
/hostap_pci.
$(LINUX_KMOD_SUFFIX
)
119 define KernelPackage
/hostap-pci
/2.6
121 $(LINUX_DIR
)/drivers
/net
/wireless
/hostap
/hostap_pci.
$(LINUX_KMOD_SUFFIX
)
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.
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
)
138 define KernelPackage
/hostap-plx
/2.4
139 # NOTE: needed to build the standalone version on 2.4
142 $(PKG_BUILD_DIR
)/driver
/modules
/hostap_plx.
$(LINUX_KMOD_SUFFIX
)
145 define KernelPackage
/hostap-plx
/2.6
147 $(LINUX_DIR
)/drivers
/net
/wireless
/hostap
/hostap_plx.
$(LINUX_KMOD_SUFFIX
)
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
159 $(MAKE
) -C
$(LINUX_DIR
)/ \
160 ARCH
="$(LINUX_KARCH)" \
161 CROSS_COMPILE
="$(TARGET_CROSS)" \
162 SUBDIRS
="$(PKG_BUILD_DIR)/driver/modules" \
167 mkdir
-p
$(PKG_BUILD_DIR
)
170 define Build
/Configure
177 define KernelPackage
/hostap-pci
/install
178 $(INSTALL_DIR
) $(1)/lib
/wifi
179 $(INSTALL_DATA
) .
/files
/lib
/wifi
/hostap.sh
$(1)/lib
/wifi
182 define KernelPackage
/hostap-plx
/install
183 $(INSTALL_DIR
) $(1)/lib
/wifi
184 $(INSTALL_DATA
) .
/files
/lib
/wifi
/hostap.sh
$(1)/lib
/wifi
187 $(eval
$(call KernelPackage
,hostap
))
188 $(eval
$(call KernelPackage
,hostap-cs
))
189 $(eval
$(call KernelPackage
,hostap-pci
))
190 $(eval
$(call KernelPackage
,hostap-plx
))