glibc: install libmvec.so when available
[buildroot-gz.git] / package / wpa_supplicant / Config.in
blob454541fdce71276b4cf0d256fba8499ab8bb2fe0
1 config BR2_PACKAGE_WPA_SUPPLICANT
2         bool "wpa_supplicant"
3         depends on BR2_USE_MMU # fork()
4         help
5           WPA supplicant for secure wireless networks
7           http://hostap.epitest.fi/wpa_supplicant/
9 if BR2_PACKAGE_WPA_SUPPLICANT
11 config BR2_PACKAGE_WPA_SUPPLICANT_NL80211
12         bool "Enable nl80211 support"
13         default y
14         select BR2_PACKAGE_LIBNL
15         depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
16         help
17           Enable support for nl80211.  This is the current wireless
18           API for Linux, supported by all wireless drivers in vanilla
19           Linux, but may not be supported by some out-of-tree Linux
20           wireless drivers.  wpa_supplicant will still fall back to
21           using the Wireless Extensions (wext) API with these drivers.
23           If this option is disabled, then only the deprecated wext
24           API will be supported, with far less features.  Linux may
25           supports using wext with modern drivers using a
26           compatibility layer, but it must be enabled in the kernel
27           configuration.
29 comment "nl80211 support needs a toolchain w/ threads"
30         depends on !BR2_TOOLCHAIN_HAS_THREADS
32 config BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT
33         bool "Enable AP mode"
34         depends on BR2_PACKAGE_WPA_SUPPLICANT_NL80211
35         help
36           With this option enabled, wpa_supplicant can act as an
37           access point much like hostapd does with a limited feature set.
38           This links in parts of hostapd functionality into wpa_supplicant,
39           making it bigger but dispensing the need for a separate hostapd
40           binary in some applications hence being smaller overall.
42 config BR2_PACKAGE_WPA_SUPPLICANT_WIFI_DISPLAY
43         bool "Enable Wi-Fi Display"
44         depends on BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT
45         help
46           Enable support for Wi-Fi Display
48 config BR2_PACKAGE_WPA_SUPPLICANT_AUTOSCAN
49         bool "Enable autoscan"
50         help
51           Enable support for the autoscan feature (allow periodic scan)
53 config BR2_PACKAGE_WPA_SUPPLICANT_EAP
54         bool "Enable EAP"
55         help
56           Enable support for EAP.
58 config BR2_PACKAGE_WPA_SUPPLICANT_HOTSPOT
59         bool "Enable HS20"
60         help
61           Enable Hotspot 2.0 and IEEE 802.11u interworking functionality.
63 config BR2_PACKAGE_WPA_SUPPLICANT_DEBUG_SYSLOG
64         bool "Enable syslog support"
65         help
66           Enable support for sending debug messages to syslog.
68 config BR2_PACKAGE_WPA_SUPPLICANT_WPS
69         bool "Enable WPS"
70         help
71           Enable support for Wi-Fi Protected Setup (WPS).
73 config BR2_PACKAGE_WPA_SUPPLICANT_CLI
74         bool "Install wpa_cli binary"
75         help
76           Install wpa_cli command line utility
78 config BR2_PACKAGE_WPA_SUPPLICANT_WPA_CLIENT_SO
79         depends on !BR2_STATIC_LIBS
80         bool "Install wpa_client shared library"
81         help
82           Install libwpa_client.so.
84 comment "wpa_client library needs a toolchain w/ dynamic library"
85         depends on BR2_STATIC_LIBS
87 config BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE
88         bool "Install wpa_passphrase binary"
89         help
90           Install wpa_passphrase command line utility.
92 config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_OLD
93         bool "Enable support for old DBus control interface"
94         depends on BR2_PACKAGE_DBUS
95         help
96           Enable support for old DBus control interface
97           (fi.epitest.hostap.WPASupplicant).
99 config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW
100         bool "Enable support for new DBus control interface"
101         depends on BR2_PACKAGE_DBUS
102         help
103           Enable support for new DBus control interface (fi.w1.wpa_supplicant1).
105 config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_INTROSPECTION
106         bool "Introspection support"
107         depends on BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW
108         help
109           Add introspection support for new DBus control interface.
111 endif