public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [PATCH v2] wpa-supplicant: enable 802.11be, MBO, OWE, and SuiteB support
@ 2025-07-18  3:04 Miaoqing Pan
  2025-10-18 22:34 ` Dmitry Baryshkov
  0 siblings, 1 reply; 3+ messages in thread
From: Miaoqing Pan @ 2025-07-18  3:04 UTC (permalink / raw)
  To: openembedded-core; +Cc: Miaoqing Pan

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 - mainly for AP mode.

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

Signed-off-by: Miaoqing Pan <miaoqing.pan@oss.qualcomm.com>
---
v2: update prefix and commit message.
---
 .../wpa-supplicant/wpa-supplicant_2.11.bb                   | 6 ++++++
 1 file changed, 6 insertions(+)

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
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] wpa-supplicant: enable 802.11be, MBO, OWE, and SuiteB support
  2025-07-18  3:04 [PATCH v2] wpa-supplicant: enable 802.11be, MBO, OWE, and SuiteB support Miaoqing Pan
@ 2025-10-18 22:34 ` Dmitry Baryshkov
  2025-10-22  1:45   ` Miaoqing Pan
  0 siblings, 1 reply; 3+ messages in thread
From: Dmitry Baryshkov @ 2025-10-18 22:34 UTC (permalink / raw)
  To: Miaoqing Pan; +Cc: openembedded-core

On Fri, Jul 18, 2025 at 11:04:52AM +0800, Miaoqing Pan wrote:
> 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 - mainly for AP mode.
> 
> This patch also enables the following features in defconfig:
> Opportunistic Wireless Encryption (OWE)
> Suite B and Suite B 192
> Multi Band Operation (MBO)
> 
> Signed-off-by: Miaoqing Pan <miaoqing.pan@oss.qualcomm.com>
> ---
> v2: update prefix and commit message.
> ---
>  .../wpa-supplicant/wpa-supplicant_2.11.bb                   | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> 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

I was pointed out to this patch. Is there any reason why you don't
extend the previous line, which also patches the .config file?

> +
>  	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
> -- 
> 2.34.1
> 
> 

-- 
With best wishes
Dmitry


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] wpa-supplicant: enable 802.11be, MBO, OWE, and SuiteB support
  2025-10-18 22:34 ` Dmitry Baryshkov
@ 2025-10-22  1:45   ` Miaoqing Pan
  0 siblings, 0 replies; 3+ messages in thread
From: Miaoqing Pan @ 2025-10-22  1:45 UTC (permalink / raw)
  To: Dmitry Baryshkov; +Cc: openembedded-core



On 10/19/2025 6:34 AM, Dmitry Baryshkov wrote:
> On Fri, Jul 18, 2025 at 11:04:52AM +0800, Miaoqing Pan wrote:
>> 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 - mainly for AP mode.
>>
>> This patch also enables the following features in defconfig:
>> Opportunistic Wireless Encryption (OWE)
>> Suite B and Suite B 192
>> Multi Band Operation (MBO)
>>
>> Signed-off-by: Miaoqing Pan <miaoqing.pan@oss.qualcomm.com>
>> ---
>> v2: update prefix and commit message.
>> ---
>>   .../wpa-supplicant/wpa-supplicant_2.11.bb                   | 6 ++++++
>>   1 file changed, 6 insertions(+)
>>
>> 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
> 
> I was pointed out to this patch. Is there any reason why you don't
> extend the previous line, which also patches the .config file?
> 

Will update in v3.



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-10-24 11:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-18  3:04 [PATCH v2] wpa-supplicant: enable 802.11be, MBO, OWE, and SuiteB support Miaoqing Pan
2025-10-18 22:34 ` Dmitry Baryshkov
2025-10-22  1:45   ` Miaoqing Pan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox