|
@@ -1,4 +1,4 @@
|
|
|
-config BR2_PACKAGE_WPA_SUPPLICANT
|
|
|
+menuconfig BR2_PACKAGE_WPA_SUPPLICANT
|
|
|
bool "wpa_supplicant"
|
|
|
depends on BR2_USE_MMU # fork()
|
|
|
help
|
|
@@ -29,6 +29,33 @@ config BR2_PACKAGE_WPA_SUPPLICANT_NL80211
|
|
|
comment "nl80211 support needs a toolchain w/ threads"
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
|
|
+config BR2_PACKAGE_WPA_SUPPLICANT_WEXT
|
|
|
+ bool "Enable wext (deprecated)"
|
|
|
+ default y if !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+ help
|
|
|
+ Enable support for wext. This is the historic wireless API
|
|
|
+ for Linux, which is now deprecated and in maintenance-only in
|
|
|
+ the kernel. It may still be required by out-of-tree drivers.
|
|
|
+
|
|
|
+config BR2_PACKAGE_WPA_SUPPLICANT_WIRED
|
|
|
+ bool "Enable wired support"
|
|
|
+ select BR2_PACKAGE_WPA_SUPPLICANT_EAP
|
|
|
+ help
|
|
|
+ Include the "wired" driver, so the internal IEEE 802.1x
|
|
|
+ supplicant can be used with Ethernet. This also enables
|
|
|
+ support for MACSEC.
|
|
|
+
|
|
|
+comment "wpa_supplicant will be useless without at least one driver"
|
|
|
+ depends on !BR2_PACKAGE_WPA_SUPPLICANT_NL80211 && \
|
|
|
+ !BR2_PACKAGE_WPA_SUPPLICANT_WEXT && \
|
|
|
+ !BR2_PACKAGE_WPA_SUPPLICANT_WIRED
|
|
|
+
|
|
|
+config BR2_PACKAGE_WPA_SUPPLICANT_IBSS_RSN
|
|
|
+ bool "Enable IBSS RSN"
|
|
|
+ depends on BR2_PACKAGE_WPA_SUPPLICANT_NL80211
|
|
|
+ help
|
|
|
+ Enable support for RSN/WPA2 in Ad-Hoc mode.
|
|
|
+
|
|
|
config BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT
|
|
|
bool "Enable AP mode"
|
|
|
depends on BR2_PACKAGE_WPA_SUPPLICANT_NL80211
|
|
@@ -90,6 +117,7 @@ config BR2_PACKAGE_WPA_SUPPLICANT_WPA3
|
|
|
|
|
|
config BR2_PACKAGE_WPA_SUPPLICANT_CLI
|
|
|
bool "Install wpa_cli binary"
|
|
|
+ select BR2_PACKAGE_WPA_SUPPLICANT_CTRL_IFACE
|
|
|
help
|
|
|
Install wpa_cli command line utility
|
|
|
|
|
@@ -107,6 +135,11 @@ config BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE
|
|
|
help
|
|
|
Install wpa_passphrase command line utility.
|
|
|
|
|
|
+config BR2_PACKAGE_WPA_SUPPLICANT_CTRL_IFACE
|
|
|
+ bool "Enable the Unix-socket control interface"
|
|
|
+ help
|
|
|
+ Enable support for the Unix-socket-based API.
|
|
|
+
|
|
|
config BR2_PACKAGE_WPA_SUPPLICANT_DBUS
|
|
|
bool "Enable support for the DBus control interface"
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
|