diff mbox series

[meta-oe] wpa_supplicant: enable 802.11be, MBO, OWE, and SuiteB support

Message ID 20250717093954.3448977-1-miaoqing.pan@oss.qualcomm.com
State New
Headers show
Series [meta-oe] wpa_supplicant: enable 802.11be, MBO, OWE, and SuiteB support | expand

Commit Message

Miaoqing Pan July 17, 2025, 9:39 a.m. UTC
wpa_supplicant has supported IEEE 802.11be (Wi-Fi 7) for over three
years. With growing market demand for Wi-Fi 7, it is now an
appropriate time to enable IEEE 802.11be Extremely High Throughput
(EHT) support.

This patch also enables the following features in defconfig:
Opportunistic Wireless Encryption (OWE)
Suite B and Suite B 192
Multi Band Operation (MBO)

All of these are build-time-only changes and have no impact on runtime
behavior.

Signed-off-by: Miaoqing Pan <miaoqing.pan@oss.qualcomm.com>
---
 .../wpa-supplicant/wpa-supplicant_2.11.bb                   | 6 ++++++
 1 file changed, 6 insertions(+)
diff mbox series

Patch

diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.11.bb b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.11.bb
index 6dc76494f7..440d3a5c94 100644
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.11.bb
+++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.11.bb
@@ -37,6 +37,12 @@  do_configure () {
 	${MAKE} -C wpa_supplicant clean
 	sed -e '/^CONFIG_TLS=/d' <wpa_supplicant/defconfig >wpa_supplicant/.config
 
+	sed -i -e 's/^#\(CONFIG_IEEE80211BE=y\)/\1/' \
+	       -e 's/^#\(CONFIG_MBO=y\)/\1/' \
+	       -e 's/^#\(CONFIG_OWE=y\)/\1/' \
+	       -e 's/^#\(CONFIG_SUITEB=y\)/\1/' \
+	       -e 's/^#\(CONFIG_SUITEB192=y\)/\1/' wpa_supplicant/.config
+
 	if ${@ bb.utils.contains('PACKAGECONFIG', 'openssl', 'true', 'false', d) }; then
 		echo 'CONFIG_TLS=openssl' >>wpa_supplicant/.config
 	elif ${@ bb.utils.contains('PACKAGECONFIG', 'gnutls', 'true', 'false', d) }; then