From 9f47a9480b9b168e00f0d564db362b95306af95b Mon Sep 17 00:00:00 2001 From: Yegor Yefremov Date: Tue, 5 Apr 2022 10:49:28 +0200 Subject: [PATCH] package/wpa_supplicant: enable SAE-PK option for WPA3 This enables a new security feature "SAE Public Key". Signed-off-by: Yegor Yefremov Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/wpa_supplicant/wpa_supplicant.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/wpa_supplicant/wpa_supplicant.mk b/package/wpa_supplicant/wpa_supplicant.mk index f0eb36e083..a2ca8a0b30 100644 --- a/package/wpa_supplicant/wpa_supplicant.mk +++ b/package/wpa_supplicant/wpa_supplicant.mk @@ -112,11 +112,13 @@ ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_WPA3),y) WPA_SUPPLICANT_CONFIG_ENABLE += \ CONFIG_DPP \ CONFIG_SAE \ + CONFIG_SAE_PK \ CONFIG_OWE else WPA_SUPPLICANT_CONFIG_DISABLE += \ CONFIG_DPP \ CONFIG_SAE \ + CONFIG_SAE_PK \ CONFIG_OWE endif