From 2bae507da53e2805ed73a3b1c672f07bec00a733 Mon Sep 17 00:00:00 2001 From: Han Sol Jin Date: Mon, 15 Jul 2024 11:58:27 -0700 Subject: [PATCH] FP3: Explicitly disable protected management frames This fixes support with WPA2/3 mixed access points; the primary issue was that while this device doesn't support PMF, said access points try to query for PMF in order to check for WPA3 support, which causes our WLAN driver to die a painful death. Disable it from the overlay, as AOSP enables it by default. It's a wonder why it was enabled in the first place. Change-Id: I89dbce7ae4c91cea9f1828e8b627a828e2b08011 --- wifi/wpa_supplicant_overlay.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/wifi/wpa_supplicant_overlay.conf b/wifi/wpa_supplicant_overlay.conf index 9f16e554..0e6a53f2 100755 --- a/wifi/wpa_supplicant_overlay.conf +++ b/wifi/wpa_supplicant_overlay.conf @@ -3,3 +3,4 @@ p2p_disabled=1 tdls_external_control=1 wowlan_triggers=magic_pkt driver_param=use_p2p_group_interface=1 +pmf=0 -- GitLab