gcc: preserve CXXFLAGS_FOR_TARGET
[buildroot-gz.git] / package / wpa_supplicant / Config.in
blobf4c4167be50c39459e3802f075f9504842539dc4
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         help
35           With this option enabled, wpa_supplicant can act as an
36           access point much like hostapd does with a limited feature set.
37           This links in parts of hostapd functionality into wpa_supplicant,
38           making it bigger but dispensing the need for a separate hostapd
39           binary in some applications hence being smaller overall.
41 config BR2_PACKAGE_WPA_SUPPLICANT_EAP
42         bool "Enable EAP"
43         help
44           Enable support for EAP.
46 config BR2_PACKAGE_WPA_SUPPLICANT_HOTSPOT
47         bool "Enable HS20"
48         help
49           Enable Hotspot 2.0 and IEEE 802.11u interworking functionality.
51 config BR2_PACKAGE_WPA_SUPPLICANT_DEBUG_SYSLOG
52         bool "Enable syslog support"
53         help
54           Enable support for sending debug messages to syslog.
56 config BR2_PACKAGE_WPA_SUPPLICANT_WPS
57         bool "Enable WPS"
58         help
59           Enable support for Wi-Fi Protected Setup (WPS).
61 config BR2_PACKAGE_WPA_SUPPLICANT_CLI
62         bool "Install wpa_cli binary"
63         help
64           Install wpa_cli command line utility
66 config BR2_PACKAGE_WPA_SUPPLICANT_WPA_CLIENT_SO
67         depends on !BR2_STATIC_LIBS
68         bool "Install wpa_client shared library"
69         help
70           Install libwpa_client.so.
72 comment "wpa_client library needs a toolchain w/ dynamic library"
73         depends on BR2_STATIC_LIBS
75 config BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE
76         bool "Install wpa_passphrase binary"
77         help
78           Install wpa_passphrase command line utility.
80 config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_OLD
81         bool "Enable support for old DBus control interface"
82         depends on BR2_PACKAGE_DBUS
83         help
84           Enable support for old DBus control interface
85           (fi.epitest.hostap.WPASupplicant).
87 config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW
88         bool "Enable support for new DBus control interface"
89         depends on BR2_PACKAGE_DBUS
90         help
91           Enable support for new DBus control interface (fi.w1.wpa_supplicant1).
93 config BR2_PACKAGE_WPA_SUPPLICANT_DBUS_INTROSPECTION
94         bool "Introspection support"
95         depends on BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW
96         help
97           Add introspection support for new DBus control interface.
99 endif