6a15c704cd
This switches hostapd variant used for SAE and OWE from hostapd-openssl to hostapd-wolfssl. The bug shich one broke the wolfssl implementation was resolved upstream with commit 631c437a91c2 ("hostapd: backport wolfssl bignum fixes"). This particular commit also got backported to OpenWrt 19.07.
21 lines
486 B
Makefile
21 lines
486 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=gluon-wireless-encryption
|
|
PKG_RELEASE:=1
|
|
|
|
include ../gluon.mk
|
|
|
|
define Package/gluon-wireless-encryption-wpa3
|
|
DEPENDS:=+hostapd-wolfssl
|
|
TITLE:=Package for supporting WPA3 encrypted wireless networks
|
|
endef
|
|
|
|
define Package/gluon-wireless-encryption-wpa3/install
|
|
$(INSTALL_DIR) $(1)/lib/gluon/features
|
|
|
|
touch $(1)/lib/gluon/features/wpa2
|
|
touch $(1)/lib/gluon/features/wpa3
|
|
endef
|
|
|
|
$(eval $(call BuildPackageGluon,gluon-wireless-encryption-wpa3))
|