diff options
author | Han Sol Jin <hansol@hansol.ca> | 2024-07-15 11:58:27 -0700 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-12-21 19:14:55 +0530 |
commit | 4f5f8629f89c7b60f9102ffd3f636c72648d60ff (patch) | |
tree | 3e7e8f4f9dbb498f6345564d7622230a81c7f792 | |
parent | eaeb20f447c8ba6fee7baab0a0b2c21e95cab410 (diff) |
msm8996-common: 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
-rw-r--r-- | wifi/wpa_supplicant_overlay.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wifi/wpa_supplicant_overlay.conf b/wifi/wpa_supplicant_overlay.conf index 793caab..afc45ab 100644 --- a/wifi/wpa_supplicant_overlay.conf +++ b/wifi/wpa_supplicant_overlay.conf @@ -5,3 +5,4 @@ interworking=1 hs20=1 auto_interworking=0 driver_param=use_p2p_group_interface=1 +pmf=0 |