21870ba6c0
hostapd calls fork() since last version bump. Fixes: http://autobuild.buildroot.net/results/945/94543b865db2ff5da34434fdcdf15ea7db73f392/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
36 lines
863 B
Plaintext
36 lines
863 B
Plaintext
config BR2_PACKAGE_HOSTAPD
|
|
bool "hostapd"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_LIBNL
|
|
help
|
|
User space daemon for wireless access points.
|
|
|
|
It implements IEEE 802.11 access point management,
|
|
IEEE 802.1X/WPA/WPA2/EAP authenticators, RADIUS client,
|
|
EAP server and RADIUS authentication server.
|
|
|
|
http://hostap.epitest.fi/
|
|
|
|
if BR2_PACKAGE_HOSTAPD
|
|
|
|
config BR2_PACKAGE_HOSTAPD_EAP
|
|
bool "Enable EAP"
|
|
depends on !BR2_PREFER_STATIC_LIB
|
|
help
|
|
Enable support for EAP and RADIUS.
|
|
|
|
comment "hostapd EAP needs a toolchain w/ dynamic library"
|
|
depends on BR2_PREFER_STATIC_LIB
|
|
|
|
config BR2_PACKAGE_HOSTAPD_WPS
|
|
bool "Enable WPS"
|
|
help
|
|
Enable support for Wi-Fi Protected Setup.
|
|
|
|
endif
|
|
|
|
comment "hostapd needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU
|