wpa_supplicant: add mesh support (IEEE 80211s)
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
24fa2acca6
commit
100ed2c05a
@ -45,6 +45,13 @@ config BR2_PACKAGE_WPA_SUPPLICANT_WIFI_DISPLAY
|
||||
help
|
||||
Enable support for Wi-Fi Display
|
||||
|
||||
config BR2_PACKAGE_WPA_SUPPLICANT_MESH_NETWORKING
|
||||
bool "Enable mesh networking"
|
||||
depends on BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT
|
||||
help
|
||||
Enable support for open and secured mesh networking
|
||||
(IEEE 802.11s)
|
||||
|
||||
config BR2_PACKAGE_WPA_SUPPLICANT_AUTOSCAN
|
||||
bool "Enable autoscan"
|
||||
help
|
||||
|
@ -73,6 +73,11 @@ ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_WIFI_DISPLAY),y)
|
||||
WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_WIFI_DISPLAY
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_MESH_NETWORKING),y)
|
||||
WPA_SUPPLICANT_CONFIG_SET += CONFIG_MESH
|
||||
WPA_SUPPLICANT_CONFIG_ENABLE += CONFIG_IEEE80211W
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_AUTOSCAN),y)
|
||||
WPA_SUPPLICANT_CONFIG_ENABLE += \
|
||||
CONFIG_AUTOSCAN_EXPONENTIAL \
|
||||
|
Loading…
Reference in New Issue
Block a user