| 1 | config BR2_COMPILE_HOSTAPD
|
|---|
| 2 | tristate
|
|---|
| 3 | default n
|
|---|
| 4 | depends BR2_PACKAGE_HOSTAPD || BR2_PACKAGE_HOSTAPD_MINI || BR2_PACKAGE_HOSTAPD_UTILS
|
|---|
| 5 | select BR2_PACKAGE_KMOD_MADWIFI
|
|---|
| 6 |
|
|---|
| 7 | config BR2_PACKAGE_HOSTAPD
|
|---|
| 8 | prompt "hostapd........................... An IEEE 802.11 AP, IEEE 802.1x/WPA/WPA2/EAP/RADIUS Authenticator"
|
|---|
| 9 | tristate
|
|---|
| 10 | default m if CONFIG_DEVEL
|
|---|
| 11 | select BR2_COMPILE_HOSTAPD
|
|---|
| 12 | select BR2_PACKAGE_LIBOPENSSL
|
|---|
| 13 | help
|
|---|
| 14 |
|
|---|
| 15 | hostapd is a user space daemon for access point and
|
|---|
| 16 | authentication servers. It implements IEEE 802.11 access point
|
|---|
| 17 | management, IEEE 802.1X/WPA/WPA2/EAP Authenticators, RADIUS
|
|---|
| 18 | client, EAP server, and RADIUS authentication server.
|
|---|
| 19 |
|
|---|
| 20 | http://hostap.epitest.fi/hostapd/
|
|---|
| 21 |
|
|---|
| 22 | Includes:
|
|---|
| 23 | - hostapd
|
|---|
| 24 |
|
|---|
| 25 | config BR2_PACKAGE_HOSTAPD_MINI
|
|---|
| 26 | prompt "hostapd-mini...................... An IEEE 802.11 AP, IEEE 802.1x/WPA/WPA2/EAP/RADIUS Authenticator (without EAP TLS/TTLS support)"
|
|---|
| 27 | tristate
|
|---|
| 28 | default m if CONFIG_DEVEL
|
|---|
| 29 | select BR2_COMPILE_HOSTAPD
|
|---|
| 30 | help
|
|---|
| 31 |
|
|---|
| 32 | hostapd is a user space daemon for access point and
|
|---|
| 33 | authentication servers. It implements IEEE 802.11 access point
|
|---|
| 34 | management, IEEE 802.1X/WPA/WPA2/EAP Authenticators, RADIUS
|
|---|
| 35 | client, EAP server, and RADIUS authentication server.
|
|---|
| 36 |
|
|---|
| 37 | http://hostap.epitest.fi/hostapd/
|
|---|
| 38 |
|
|---|
| 39 | Includes:
|
|---|
| 40 | - hostapd (built with WPA support only)
|
|---|
| 41 |
|
|---|
| 42 | config BR2_PACKAGE_HOSTAPD_UTILS
|
|---|
| 43 | prompt "hostapd-utils..................... An IEEE 802.11 AP, IEEE 802.1x/WPA/WPA2/EAP/RADIUS Authenticator (CLI utility)"
|
|---|
| 44 | tristate
|
|---|
| 45 | default m if CONFIG_DEVEL
|
|---|
| 46 | select BR2_COMPILE_HOSTAPD
|
|---|
| 47 | help
|
|---|
| 48 |
|
|---|
| 49 | hostapd is a user space daemon for access point and
|
|---|
| 50 | authentication servers. It implements IEEE 802.11 access point
|
|---|
| 51 | management, IEEE 802.1X/WPA/WPA2/EAP Authenticators, RADIUS
|
|---|
| 52 | client, EAP server, and RADIUS authentication server.
|
|---|
| 53 |
|
|---|
| 54 | http://hostap.epitest.fi/hostapd/
|
|---|
| 55 |
|
|---|
| 56 | Includes:
|
|---|
| 57 | - hostapd_cli
|
|---|
| 58 |
|
|---|
| 59 | if (BR2_PACKAGE_HOSTAPD = y) && (BR2_PACKAGE_HOSTAPD_MINI = y)
|
|---|
| 60 | comment "WARNING: both hostapd and hostapd-mini are selected for installation !"
|
|---|
| 61 | endif
|
|---|