From: Sergey Matyukevich Date: Mon, 9 Sep 2019 20:20:34 +0000 (+0300) Subject: package/wpa_supplicant: fix AP mode settings X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b2890056db9a57dd71eaa1b5a5e54554adecf66c;p=buildroot.git package/wpa_supplicant: fix AP mode settings New wpa_supplicant v2.9 enables by default AP, P2P, WIFI_DISPLAY features in defconfig. However these features make sense only for wpa_supplicant drivers supporting AP mode. That is why, for consistent configuration, these features should be explicitely disabled in wpa_supplicant .config file unless they are requested by Config.in options. Note that at the moment AP support in Buildroot can be enabled only for NL80211 driver. Fixes: http://autobuild.buildroot.net/results/d37672374db935ac29953263ec68a2786ee65cc2/ Signed-off-by: Sergey Matyukevich Tested-by: Matt Weber Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- diff --git a/package/wpa_supplicant/wpa_supplicant.mk b/package/wpa_supplicant/wpa_supplicant.mk index 283c006052..9dcebca9bf 100644 --- a/package/wpa_supplicant/wpa_supplicant.mk +++ b/package/wpa_supplicant/wpa_supplicant.mk @@ -67,10 +67,16 @@ ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT),y) WPA_SUPPLICANT_CONFIG_ENABLE += \ CONFIG_AP \ CONFIG_P2P +else +WPA_SUPPLICANT_CONFIG_DISABLE += \ + CONFIG_AP \ + CONFIG_P2P endif ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_WIFI_DISPLAY),y) WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_WIFI_DISPLAY +else +WPA_SUPPLICANT_CONFIG_DISABLE += CONFIG_WIFI_DISPLAY endif ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_MESH_NETWORKING),y)