@@ -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
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(+)