[Buildroot] [git commit] package/wpa_supplicant: Allow mesh configuration

Arnout Vandecappelle (Essensium/Mind) arnout at mind.be
Wed Oct 6 19:11:09 UTC 2021


commit: https://git.buildroot.net/buildroot/commit/?id=0ae5ca9b67f321552f6428de14105192cebd7e8f
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

wpa_supplicant defconfig doesn't enable CONFIG_MESH
by default, and currently there is only a path to
disable it in buildroot. This patch will restore
the logic to enable it.

Signed-off-by: José Pekkarinen <jose.pekkarinen at unikie.com>
Tested-by: Nicolas Cavallari <nicolas.cavallari at green-communications.fr>
Acked-by: Nicolas Cavallari <nicolas.cavallari at green-communications.fr>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout at mind.be>
---
 package/wpa_supplicant/wpa_supplicant.mk | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/package/wpa_supplicant/wpa_supplicant.mk b/package/wpa_supplicant/wpa_supplicant.mk
index e9078b9f89..3c0b0c1dfc 100644
--- a/package/wpa_supplicant/wpa_supplicant.mk
+++ b/package/wpa_supplicant/wpa_supplicant.mk
@@ -104,7 +104,9 @@ else
 WPA_SUPPLICANT_CONFIG_DISABLE += CONFIG_WIFI_DISPLAY
 endif
 
-ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_MESH_NETWORKING),)
+ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_MESH_NETWORKING),y)
+WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_MESH
+else
 WPA_SUPPLICANT_CONFIG_DISABLE += CONFIG_MESH
 endif
 


More information about the buildroot mailing list