From: Georges Savoundararadj Date: Sun, 3 Jul 2016 23:28:52 +0000 (-0700) Subject: wpa_supplicant: add option to enable Wi-Fi Display X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=984a64931f13a2a2762fd6e3b851f6ad091a0d45;p=buildroot.git wpa_supplicant: add option to enable Wi-Fi Display BR2_PACKAGE_WPA_SUPPLICANT_WIFI_DISPLAY depends on BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT because CONFIG_WIFI_DISPLAY needs CONFIG_P2P. Signed-off-by: Georges Savoundararadj Signed-off-by: Thomas Petazzoni --- diff --git a/package/wpa_supplicant/Config.in b/package/wpa_supplicant/Config.in index 1920774a6e..85520b6a68 100644 --- a/package/wpa_supplicant/Config.in +++ b/package/wpa_supplicant/Config.in @@ -38,6 +38,12 @@ config BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT making it bigger but dispensing the need for a separate hostapd binary in some applications hence being smaller overall. +config BR2_PACKAGE_WPA_SUPPLICANT_WIFI_DISPLAY + bool "Enable Wi-Fi Display" + depends on BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT + help + Enable support for Wi-Fi Display + config BR2_PACKAGE_WPA_SUPPLICANT_AUTOSCAN bool "Enable autoscan" help diff --git a/package/wpa_supplicant/wpa_supplicant.mk b/package/wpa_supplicant/wpa_supplicant.mk index d1d59f74ed..d46328e0e9 100644 --- a/package/wpa_supplicant/wpa_supplicant.mk +++ b/package/wpa_supplicant/wpa_supplicant.mk @@ -68,6 +68,10 @@ WPA_SUPPLICANT_CONFIG_ENABLE += \ CONFIG_P2P endif +ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_WIFI_DISPLAY),y) +WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_WIFI_DISPLAY +endif + ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_AUTOSCAN),y) WPA_SUPPLICANT_CONFIG_ENABLE += \ CONFIG_AUTOSCAN_EXPONENTIAL \