hostapd: add hs20 variant
Add hostapd variant compiled with support for Hotspot 2.0 AP features. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
parent
7f0cb91d71
commit
80a194b100
@ -68,6 +68,9 @@ CONFIG_VARIANT:=$(LOCAL_VARIANT)
|
|||||||
ifeq ($(LOCAL_VARIANT),mesh)
|
ifeq ($(LOCAL_VARIANT),mesh)
|
||||||
CONFIG_VARIANT:=full
|
CONFIG_VARIANT:=full
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(LOCAL_VARIANT),hs20)
|
||||||
|
CONFIG_VARIANT:=full
|
||||||
|
endif
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
@ -108,6 +111,10 @@ ifeq ($(SSL_VARIANT),openssl)
|
|||||||
ifeq ($(LOCAL_VARIANT),full)
|
ifeq ($(LOCAL_VARIANT),full)
|
||||||
DRIVER_MAKEOPTS += CONFIG_OWE=y CONFIG_SUITEB192=y CONFIG_AP=y CONFIG_MESH=y
|
DRIVER_MAKEOPTS += CONFIG_OWE=y CONFIG_SUITEB192=y CONFIG_AP=y CONFIG_MESH=y
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(LOCAL_VARIANT),hs20)
|
||||||
|
DRIVER_MAKEOPTS += CONFIG_OWE=y CONFIG_SUITEB192=y CONFIG_AP=y CONFIG_MESH=y CONFIG_DPP=y CONFIG_HS20=y CONFIG_INTERWORKING=y
|
||||||
|
endif
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(SSL_VARIANT),wolfssl)
|
ifeq ($(SSL_VARIANT),wolfssl)
|
||||||
@ -168,6 +175,15 @@ endef
|
|||||||
|
|
||||||
Package/hostapd-openssl/description = $(Package/hostapd/description)
|
Package/hostapd-openssl/description = $(Package/hostapd/description)
|
||||||
|
|
||||||
|
define Package/hostapd-hs20
|
||||||
|
$(call Package/hostapd/Default,$(1))
|
||||||
|
TITLE+= (OpenSSL with Hotspot 2.0)
|
||||||
|
VARIANT:=hs20-openssl
|
||||||
|
DEPENDS+=+libopenssl
|
||||||
|
endef
|
||||||
|
|
||||||
|
Package/hostapd-hs20/description = $(Package/hostapd/description)
|
||||||
|
|
||||||
define Package/hostapd-wolfssl
|
define Package/hostapd-wolfssl
|
||||||
$(call Package/hostapd/Default,$(1))
|
$(call Package/hostapd/Default,$(1))
|
||||||
TITLE+= (wolfSSL full)
|
TITLE+= (wolfSSL full)
|
||||||
@ -453,7 +469,9 @@ define Build/Configure
|
|||||||
$(if $(wildcard ./files/hostapd-$(CONFIG_VARIANT).config), \
|
$(if $(wildcard ./files/hostapd-$(CONFIG_VARIANT).config), \
|
||||||
$(CP) ./files/hostapd-$(CONFIG_VARIANT).config $(PKG_BUILD_DIR)/hostapd/.config \
|
$(CP) ./files/hostapd-$(CONFIG_VARIANT).config $(PKG_BUILD_DIR)/hostapd/.config \
|
||||||
)
|
)
|
||||||
|
$(if $(wildcard ./files/wpa_supplicant-$(CONFIG_VARIANT).config), \
|
||||||
$(CP) ./files/wpa_supplicant-$(CONFIG_VARIANT).config $(PKG_BUILD_DIR)/wpa_supplicant/.config
|
$(CP) ./files/wpa_supplicant-$(CONFIG_VARIANT).config $(PKG_BUILD_DIR)/wpa_supplicant/.config
|
||||||
|
)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
TARGET_CPPFLAGS := \
|
TARGET_CPPFLAGS := \
|
||||||
@ -567,6 +585,7 @@ define Package/hostapd/install
|
|||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hostapd/hostapd $(1)/usr/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hostapd/hostapd $(1)/usr/sbin/
|
||||||
endef
|
endef
|
||||||
Package/hostapd-basic/install = $(Package/hostapd/install)
|
Package/hostapd-basic/install = $(Package/hostapd/install)
|
||||||
|
Package/hostapd-hs20/install = $(Package/hostapd/install)
|
||||||
Package/hostapd-mini/install = $(Package/hostapd/install)
|
Package/hostapd-mini/install = $(Package/hostapd/install)
|
||||||
Package/hostapd-openssl/install = $(Package/hostapd/install)
|
Package/hostapd-openssl/install = $(Package/hostapd/install)
|
||||||
Package/hostapd-wolfssl/install = $(Package/hostapd/install)
|
Package/hostapd-wolfssl/install = $(Package/hostapd/install)
|
||||||
@ -635,6 +654,7 @@ endif
|
|||||||
|
|
||||||
$(eval $(call BuildPackage,hostapd))
|
$(eval $(call BuildPackage,hostapd))
|
||||||
$(eval $(call BuildPackage,hostapd-basic))
|
$(eval $(call BuildPackage,hostapd-basic))
|
||||||
|
$(eval $(call BuildPackage,hostapd-hs20))
|
||||||
$(eval $(call BuildPackage,hostapd-mini))
|
$(eval $(call BuildPackage,hostapd-mini))
|
||||||
$(eval $(call BuildPackage,hostapd-openssl))
|
$(eval $(call BuildPackage,hostapd-openssl))
|
||||||
$(eval $(call BuildPackage,hostapd-wolfssl))
|
$(eval $(call BuildPackage,hostapd-wolfssl))
|
||||||
|
Loading…
Reference in New Issue
Block a user