2008-11-18 07:26:15 +00:00
|
|
|
#
|
2009-02-17 20:21:02 +00:00
|
|
|
# Copyright (C) 2006-2009 OpenWrt.org
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-11 00:41:16 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=hostapd
|
2009-03-23 16:16:22 +00:00
|
|
|
PKG_VERSION:=0.6.9
|
2006-06-11 00:41:16 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2008-07-07 13:49:36 +00:00
|
|
|
PKG_SOURCE_URL:=http://hostap.epitest.fi/releases/
|
2007-11-16 03:10:56 +00:00
|
|
|
PKG_SOURCE_SUBDIR:=hostapd-$(PKG_VERSION)
|
|
|
|
PKG_SOURCE_VERSION:=$(PKG_REV)
|
2009-03-23 16:16:22 +00:00
|
|
|
PKG_MD5SUM:=83630d11fa66ade9091f1b304fccd74c
|
2006-09-24 20:49:31 +00:00
|
|
|
|
2009-04-27 15:53:00 +00:00
|
|
|
PKG_BUILD_DEPENDS:= \
|
|
|
|
PACKAGE_kmod-madwifi:madwifi \
|
|
|
|
PACKAGE_kmod-mac80211:mac80211 \
|
2009-01-27 20:05:11 +00:00
|
|
|
|
2009-04-27 15:53:00 +00:00
|
|
|
PKG_CONFIG_DEPENDS:= \
|
2009-01-27 20:05:11 +00:00
|
|
|
CONFIG_PACKAGE_kmod-ath9k \
|
|
|
|
CONFIG_PACKAGE_kmod-mac80211 \
|
|
|
|
CONFIG_PACKAGE_kmod-madwifi \
|
|
|
|
CONFIG_PACKAGE_hostapd \
|
2009-04-27 15:53:00 +00:00
|
|
|
CONFIG_PACKAGE_hostapd-mini \
|
2009-01-27 20:05:11 +00:00
|
|
|
|
2009-04-27 15:53:00 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2009-01-27 20:05:11 +00:00
|
|
|
|
|
|
|
DRIVER_MAKEOPTS= \
|
|
|
|
CONFIG_DRIVER_NL80211=$(CONFIG_PACKAGE_kmod-mac80211) \
|
|
|
|
CONFIG_DRIVER_MADWIFI=$(CONFIG_PACKAGE_kmod-madwifi) \
|
|
|
|
CONFIG_IEEE80211N=$(CONFIG_PACKAGE_kmod-ath9k)
|
2006-06-11 00:41:16 +00:00
|
|
|
|
2006-09-24 20:49:31 +00:00
|
|
|
define Package/hostapd/Default
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=IEEE 802.1x Authenticator
|
|
|
|
URL:=http://hostap.epitest.fi/
|
2009-04-30 18:11:01 +00:00
|
|
|
DEPENDS:=@!TARGET_avr32 @!TARGET_etrax +PACKAGE_kmod-mac80211:libnl-tiny
|
2006-09-24 20:49:31 +00:00
|
|
|
endef
|
|
|
|
|
2006-06-18 18:10:41 +00:00
|
|
|
define Package/hostapd
|
2007-09-07 08:34:51 +00:00
|
|
|
$(call Package/hostapd/Default)
|
2006-09-24 20:49:31 +00:00
|
|
|
TITLE+= (full)
|
2008-10-01 21:26:19 +00:00
|
|
|
DEPENDS+= +PACKAGE_hostapd:libopenssl
|
2006-06-18 18:10:41 +00:00
|
|
|
endef
|
|
|
|
|
2007-11-16 03:10:56 +00:00
|
|
|
#define Package/hostapd/conffiles
|
|
|
|
#/etc/hostapd.conf
|
|
|
|
#endef
|
2006-06-18 18:10:41 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define Package/hostapd/description
|
2009-02-17 20:21:02 +00:00
|
|
|
This package contains a full featured IEEE 802.1x/WPA/EAP/RADIUS
|
2007-09-07 08:34:51 +00:00
|
|
|
Authenticator.
|
|
|
|
endef
|
|
|
|
|
2006-06-18 18:10:41 +00:00
|
|
|
define Package/hostapd-mini
|
2007-09-07 08:34:51 +00:00
|
|
|
$(call Package/hostapd/Default)
|
2006-09-24 20:49:31 +00:00
|
|
|
TITLE+= (WPA-PSK only)
|
2006-06-18 18:10:41 +00:00
|
|
|
endef
|
|
|
|
|
2007-11-16 03:10:56 +00:00
|
|
|
#define Package/hostapd-mini/conffiles
|
|
|
|
#/etc/hostapd.conf
|
|
|
|
#endef
|
2006-06-18 18:10:41 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define Package/hostapd-mini/description
|
2009-02-17 20:21:02 +00:00
|
|
|
This package contains a minimal IEEE 802.1x/WPA/EAP/RADIUS Authenticator
|
2007-09-07 08:34:51 +00:00
|
|
|
(WPA-PSK only).
|
|
|
|
endef
|
|
|
|
|
2006-06-18 18:10:41 +00:00
|
|
|
define Package/hostapd-utils
|
2006-09-24 20:49:31 +00:00
|
|
|
$(call Package/hostapd/Default)
|
|
|
|
TITLE+= (utils)
|
2007-09-16 16:12:20 +00:00
|
|
|
DEPENDS:=@PACKAGE_hostapd||PACKAGE_hostapd-mini
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/hostapd-utils/description
|
2009-02-17 20:21:02 +00:00
|
|
|
This package contains a command line utility to control the
|
2007-09-07 08:34:51 +00:00
|
|
|
IEEE 802.1x/WPA/EAP/RADIUS Authenticator.
|
2006-06-18 18:10:41 +00:00
|
|
|
endef
|
2006-06-11 00:41:16 +00:00
|
|
|
|
|
|
|
define Build/ConfigureTarget
|
2007-11-16 03:10:56 +00:00
|
|
|
rm -rf $(PKG_BUILD_DIR)/hostapd.$(1)
|
2007-11-17 14:14:16 +00:00
|
|
|
mkdir -p $(PKG_BUILD_DIR)/hostapd.$(1)
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_BUILD_DIR)/hostapd \
|
|
|
|
$(PKG_BUILD_DIR)/src \
|
|
|
|
$(PKG_BUILD_DIR)/hostapd.$(1)/
|
|
|
|
$(CP) ./files/$(1).config $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/.config
|
2006-06-11 00:41:16 +00:00
|
|
|
endef
|
|
|
|
|
2009-04-30 18:11:01 +00:00
|
|
|
TARGET_CPPFLAGS := \
|
|
|
|
-I$(STAGING_DIR)/usr/include/libnl-tiny \
|
2009-05-27 02:54:29 +00:00
|
|
|
-I$(PKG_BUILD_DIR)/src/crypto \
|
2009-04-30 18:11:01 +00:00
|
|
|
$(TARGET_CPPFLAGS) \
|
|
|
|
-I$(STAGING_DIR)/usr/include/madwifi \
|
|
|
|
-I$(STAGING_DIR)/usr/include/mac80211 \
|
2009-05-04 16:13:46 +00:00
|
|
|
-DCONFIG_LIBNL20 \
|
|
|
|
-D_GNU_SOURCE
|
2009-04-30 18:11:01 +00:00
|
|
|
|
2006-06-11 00:41:16 +00:00
|
|
|
define Build/CompileTarget
|
2009-04-30 18:11:01 +00:00
|
|
|
CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \
|
2007-11-17 14:14:16 +00:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd \
|
2006-06-11 00:41:16 +00:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2009-01-27 20:05:11 +00:00
|
|
|
$(DRIVER_MAKEOPTS) \
|
2009-02-24 00:08:08 +00:00
|
|
|
LIBS="$(TARGET_LDFLAGS) \
|
2009-04-30 18:11:01 +00:00
|
|
|
$(if $(CONFIG_PACKAGE_kmod-mac80211),-lm -lnl-tiny) \
|
2007-11-16 23:37:24 +00:00
|
|
|
$(if $(findstring default,$(1)),-lssl -lcrypto)" \
|
2006-06-11 00:41:16 +00:00
|
|
|
hostapd hostapd_cli
|
2007-11-17 14:14:16 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/hostapd.$(1)/hostapd/hostapd_cli $(PKG_BUILD_DIR)/
|
2006-06-11 00:41:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/InstallTemplate
|
2007-04-18 12:40:27 +00:00
|
|
|
$(INSTALL_DIR) $$(1)/lib/wifi
|
|
|
|
$(INSTALL_DATA) ./files/hostapd.sh $$(1)/lib/wifi/hostapd.sh
|
2007-11-17 14:14:16 +00:00
|
|
|
$(INSTALL_DIR) $$(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hostapd.$(2)/hostapd/hostapd $$(1)/usr/sbin/
|
2007-11-16 03:10:56 +00:00
|
|
|
# config is managed through uci
|
|
|
|
# $(INSTALL_DIR) $$(1)/etc
|
2009-02-17 20:21:02 +00:00
|
|
|
# $(INSTALL_CONF) $(PKG_BUILD_DIR)/hostapd.$(2)/hostapd/hostapd.conf $$(1)/etc/hostapd.conf
|
2006-06-11 00:41:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/Template
|
|
|
|
ifneq ($(CONFIG_PACKAGE_$(1)),)
|
|
|
|
define Build/Configure/$(2)
|
|
|
|
$(call Build/ConfigureTarget,$(2))
|
|
|
|
endef
|
|
|
|
define Build/Compile/$(2)
|
|
|
|
$(call Build/CompileTarget,$(2))
|
|
|
|
endef
|
2006-08-18 21:21:06 +00:00
|
|
|
define Package/$(1)/install
|
2006-06-11 00:41:16 +00:00
|
|
|
$(call Package/InstallTemplate,$(1),$(2))
|
2006-08-18 21:21:06 +00:00
|
|
|
endef
|
|
|
|
endif
|
2006-06-11 00:41:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
2007-11-17 14:21:14 +00:00
|
|
|
rm -f $(PKG_BUILD_DIR)/.configured*
|
2006-06-11 00:41:16 +00:00
|
|
|
$(call Build/Configure/default)
|
|
|
|
$(call Build/Configure/mini)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(call Build/Compile/default)
|
|
|
|
$(call Build/Compile/mini)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Clean
|
|
|
|
rm -rf $(PKG_BUILD_DIR)_default
|
|
|
|
rm -rf $(PKG_BUILD_DIR)_mini
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/hostapd-utils/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hostapd_cli $(1)/usr/sbin/
|
2006-06-11 00:41:16 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Package/Template,hostapd,default))
|
|
|
|
$(eval $(call Package/Template,hostapd-mini,mini))
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,hostapd))
|
|
|
|
$(eval $(call BuildPackage,hostapd-mini))
|
|
|
|
$(eval $(call BuildPackage,hostapd-utils))
|