Enable nl80211 support in hostapd.
[openwrt.git] / package / hostapd / 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
11 PKG_NAME:=hostapd
12 PKG_REV:=03ec0ec5cdb974d51a4a2a566bea4c4568138576
13 PKG_VERSION:=20071107_$(PKG_REV)
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=git://w1.fi/srv/git/hostap.git
18 PKG_SOURCE_SUBDIR:=hostapd-$(PKG_VERSION)
19 PKG_SOURCE_VERSION:=$(PKG_REV)
20 PKG_BUILD_DEPENDS:=madwifi mac80211 libnl openssl
21
22 include $(INCLUDE_DIR)/package.mk
23 STAMP_CONFIGURED:=$(STAMP_CONFIGURED)_$(call confvar,CONFIG_PACKAGE_kmod-mac80211 CONFIG_PACKAGE_kmod-madwifi CONFIG_PACKAGE_hostapd CONFIG_PACKAGE_hostapd-mini)
24
25 define Package/hostapd/Default
26   SECTION:=net
27   CATEGORY:=Network
28   TITLE:=IEEE 802.1x Authenticator
29   URL:=http://hostap.epitest.fi/
30   DEPENDS:=@!TARGET_avr32 @!TARGET_etrax
31 endef
32
33 define Package/hostapd
34 $(call Package/hostapd/Default)
35   TITLE+= (full)
36   DEPENDS+= +libopenssl
37 endef
38
39 #define Package/hostapd/conffiles
40 #/etc/hostapd.conf
41 #endef
42
43 define Package/hostapd/description
44  This package contains a full featured IEEE 802.1x/WPA/EAP/RADIUS 
45  Authenticator.
46 endef
47
48 define Package/hostapd-mini
49 $(call Package/hostapd/Default)
50   TITLE+= (WPA-PSK only)
51 endef
52
53 #define Package/hostapd-mini/conffiles
54 #/etc/hostapd.conf
55 #endef
56
57 define Package/hostapd-mini/description
58  This package contains a minimal IEEE 802.1x/WPA/EAP/RADIUS Authenticator 
59  (WPA-PSK only).
60 endef
61
62 define Package/hostapd-utils
63   $(call Package/hostapd/Default)
64   TITLE+= (utils)
65   DEPENDS:=@PACKAGE_hostapd||PACKAGE_hostapd-mini
66 endef
67
68 define Package/hostapd-utils/description
69  This package contains a command line utility to control the 
70  IEEE 802.1x/WPA/EAP/RADIUS Authenticator.
71 endef
72
73 define Build/ConfigureTarget
74         rm -rf $(PKG_BUILD_DIR)/hostapd.$(1)
75         mkdir -p $(PKG_BUILD_DIR)/hostapd.$(1)
76         $(CP) \
77                 $(PKG_BUILD_DIR)/hostapd \
78                 $(PKG_BUILD_DIR)/src \
79                 $(PKG_BUILD_DIR)/hostapd.$(1)/
80         $(CP) ./files/driver_nl80211.c $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/
81         $(CP) ./files/radiotap.c $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/
82         $(CP) ./files/radiotap.h $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/
83         $(CP) ./files/radiotap_iter.h $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/
84
85         $(CP) ./files/$(1).config $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/.config
86         $(if $(CONFIG_PACKAGE_kmod-mac80211),,$(SED) 's,^CONFIG_DRIVER_DEVICESCAPE,#CONFIG_DRIVER_DEVICESCAPE,g' $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/.config)
87         $(if $(CONFIG_PACKAGE_kmod-madwifi),,$(SED) 's,^CONFIG_DRIVER_MADWIFI,#CONFIG_DRIVER_MADWIFI,g' $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/.config)
88 endef
89
90 define Build/CompileTarget
91         CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/madwifi -I$(STAGING_DIR)/usr/include/mac80211 -I$(STAGING_DIR)/usr/include/libnl -I$(STAGING_DIR)/usr/include" \
92         $(MAKE) -C $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd \
93                 $(TARGET_CONFIGURE_OPTS) \
94                 LIBS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib \
95                         $(if $(CONFIG_PACKAGE_kmod-mac80211),-lm $(STAGING_DIR)/usr/lib/libnl.a) \
96                         $(if $(findstring default,$(1)),-lssl -lcrypto)" \
97                 hostapd hostapd_cli
98         $(CP) $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/hostapd_cli $(PKG_BUILD_DIR)/
99 endef
100
101 define Package/InstallTemplate
102         $(INSTALL_DIR) $$(1)/lib/wifi
103         $(INSTALL_DATA) ./files/hostapd.sh $$(1)/lib/wifi/hostapd.sh
104         $(INSTALL_DIR) $$(1)/usr/sbin
105         $(INSTALL_BIN) $(PKG_BUILD_DIR)/hostapd.$(2)/hostapd/hostapd $$(1)/usr/sbin/
106 # config is managed through uci
107 #       $(INSTALL_DIR) $$(1)/etc
108 #       $(INSTALL_CONF) $(PKG_BUILD_DIR)/hostapd.$(2)/hostapd/hostapd.conf $$(1)/etc/hostapd.conf 
109 endef
110
111 define Package/Template
112  ifneq ($(CONFIG_PACKAGE_$(1)),)
113   define Build/Configure/$(2)
114         $(call Build/ConfigureTarget,$(2))
115   endef
116   define Build/Compile/$(2)
117         $(call Build/CompileTarget,$(2))
118   endef
119   define Package/$(1)/install
120         $(call Package/InstallTemplate,$(1),$(2))
121   endef
122  endif
123 endef
124
125 define Build/Configure
126         rm -f $(PKG_BUILD_DIR)/.configured*
127         $(call Build/Configure/default)
128         $(call Build/Configure/mini)
129 endef
130
131 define Build/Compile
132         $(call Build/Compile/default)
133         $(call Build/Compile/mini)
134 endef
135
136 define Build/Clean
137         rm -rf $(PKG_BUILD_DIR)_default
138         rm -rf $(PKG_BUILD_DIR)_mini
139 endef
140
141 define Package/hostapd-utils/install
142         $(INSTALL_DIR) $(1)/usr/sbin
143         $(INSTALL_BIN) $(PKG_BUILD_DIR)/hostapd_cli $(1)/usr/sbin/
144 endef
145
146 $(eval $(call Package/Template,hostapd,default))
147 $(eval $(call Package/Template,hostapd-mini,mini))
148
149 $(eval $(call BuildPackage,hostapd))
150 $(eval $(call BuildPackage,hostapd-mini))
151 $(eval $(call BuildPackage,hostapd-utils))