[Buildroot] [git commit] wpa_supplicant: add option to enable Wi-Fi Display
From: Thomas Petazzoni <hidden>
Date: 2016-07-04 09:11:05
Subsystem:
the rest · Maintainer:
Linus Torvalds
commit: https://git.buildroot.net/buildroot/commit/?id=984a64931f13a2a2762fd6e3b851f6ad091a0d45 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master 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 <redacted> Signed-off-by: Thomas Petazzoni <redacted> --- package/wpa_supplicant/Config.in | 6 ++++++ package/wpa_supplicant/wpa_supplicant.mk | 4 ++++ 2 files changed, 10 insertions(+)
diff --git a/package/wpa_supplicant/Config.in b/package/wpa_supplicant/Config.in
index 1920774..85520b6 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 d1d59f7..d46328e 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 \