Browse Source

package/wpa_supplicant: Allow mesh configuration

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@unikie.com>
Tested-by: Nicolas Cavallari <nicolas.cavallari@green-communications.fr>
Acked-by: Nicolas Cavallari <nicolas.cavallari@green-communications.fr>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
José Pekkarinen 3 years ago
parent
commit
0ae5ca9b67
1 changed files with 3 additions and 1 deletions
  1. 3 1
      package/wpa_supplicant/wpa_supplicant.mk

+ 3 - 1
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