package/rpi-userland: don't install file in random location
[buildroot-gz.git] / package / hostapd / Config.in
blob62fbb66d639865d5d2280d467c9eed225ae78aab
1 config BR2_PACKAGE_HOSTAPD
2         bool "hostapd"
3         depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
4         depends on BR2_USE_MMU # fork()
5         select BR2_PACKAGE_LIBNL
6         help
7           User space daemon for wireless access points.
9           It implements IEEE 802.11 access point management,
10           IEEE 802.1X/WPA/WPA2/EAP authenticators, RADIUS client,
11           EAP server and RADIUS authentication server.
13           http://hostap.epitest.fi/
15 if BR2_PACKAGE_HOSTAPD
17 config BR2_PACKAGE_HOSTAPD_ACS
18         bool "Enable ACS"
19         default y
20         help
21           Enable support for standard ACS (Automatic Channel Selection).
22           Some propietary drivers use a custom algorithm which requires
23           channel to be set to '0' (which enables ACS in the config),
24           causing hostapd to use the standard one which doesn't work
25           for those cases.
27 config BR2_PACKAGE_HOSTAPD_EAP
28         bool "Enable EAP"
29         depends on !BR2_STATIC_LIBS
30         help
31           Enable support for EAP and RADIUS.
33 comment "hostapd EAP needs a toolchain w/ dynamic library"
34         depends on BR2_STATIC_LIBS
36 config BR2_PACKAGE_HOSTAPD_WPS
37         bool "Enable WPS"
38         help
39           Enable support for Wi-Fi Protected Setup.
41 endif
43 comment "hostapd needs a toolchain w/ threads"
44         depends on !BR2_TOOLCHAIN_HAS_THREADS
45         depends on BR2_USE_MMU