wok-6.x annotate hostapd/stuff/config @ rev 16792
Add libjson
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jul 02 20:52:57 2014 +0200 (2014-07-02) |
parents | f4ab8a128b6f |
children |
rev | line source |
---|---|
gokhlayeh@5824 | 1 # Example hostapd build time configuration |
gokhlayeh@5824 | 2 # |
gokhlayeh@5824 | 3 # This file lists the configuration options that are used when building the |
gokhlayeh@5824 | 4 # hostapd binary. All lines starting with # are ignored. Configuration option |
gokhlayeh@5824 | 5 # lines must be commented out complete, if they are not to be included, i.e., |
gokhlayeh@5824 | 6 # just setting VARIABLE=n is not disabling that variable. |
gokhlayeh@5824 | 7 # |
gokhlayeh@5824 | 8 # This file is included in Makefile, so variables like CFLAGS and LIBS can also |
gokhlayeh@5824 | 9 # be modified from here. In most cass, these lines should use += in order not |
gokhlayeh@5824 | 10 # to override previous values of the variables. |
gokhlayeh@5824 | 11 |
gokhlayeh@5824 | 12 # Driver interface for Host AP driver |
gokhlayeh@5824 | 13 CONFIG_DRIVER_HOSTAP=y |
gokhlayeh@5824 | 14 |
gokhlayeh@5824 | 15 # Driver interface for wired authenticator |
gokhlayeh@5824 | 16 CONFIG_DRIVER_WIRED=y |
gokhlayeh@5824 | 17 |
gokhlayeh@5824 | 18 # Driver interface for madwifi driver |
gokhlayeh@5824 | 19 #CONFIG_DRIVER_MADWIFI=y |
gokhlayeh@5824 | 20 #CFLAGS += -I/usr # change to reflect local setup; directory for madwifi src |
gokhlayeh@5824 | 21 |
gokhlayeh@5824 | 22 # Driver interface for Prism54 driver |
gokhlayeh@5824 | 23 CONFIG_DRIVER_PRISM54=y |
gokhlayeh@5824 | 24 |
gokhlayeh@5824 | 25 # IEEE 802.11F/IAPP |
gokhlayeh@5824 | 26 CONFIG_IAPP=y |
gokhlayeh@5824 | 27 |
gokhlayeh@5824 | 28 # WPA2/IEEE 802.11i RSN pre-authentication |
gokhlayeh@5824 | 29 CONFIG_RSN_PREAUTH=y |
gokhlayeh@5824 | 30 |
gokhlayeh@5824 | 31 # PeerKey handshake for Station to Station Link (IEEE 802.11e DLS) |
gokhlayeh@5824 | 32 CONFIG_PEERKEY=y |
gokhlayeh@5824 | 33 |
gokhlayeh@5824 | 34 # IEEE 802.11w (management frame protection) |
gokhlayeh@5824 | 35 # This version is an experimental implementation based on IEEE 802.11w/D1.0 |
gokhlayeh@5824 | 36 # draft and is subject to change since the standard has not yet been finalized. |
gokhlayeh@5824 | 37 # Driver support is also needed for IEEE 802.11w. |
gokhlayeh@5824 | 38 CONFIG_IEEE80211W=y |
gokhlayeh@5824 | 39 |
gokhlayeh@5824 | 40 # Integrated EAP server |
gokhlayeh@5824 | 41 CONFIG_EAP=y |
gokhlayeh@5824 | 42 |
gokhlayeh@5824 | 43 # EAP-MD5 for the integrated EAP server |
gokhlayeh@5824 | 44 CONFIG_EAP_MD5=y |
gokhlayeh@5824 | 45 |
gokhlayeh@5824 | 46 # EAP-TLS for the integrated EAP server |
gokhlayeh@5824 | 47 CONFIG_EAP_TLS=y |
gokhlayeh@5824 | 48 |
gokhlayeh@5824 | 49 # EAP-MSCHAPv2 for the integrated EAP server |
gokhlayeh@5824 | 50 CONFIG_EAP_MSCHAPV2=y |
gokhlayeh@5824 | 51 |
gokhlayeh@5824 | 52 # EAP-PEAP for the integrated EAP server |
gokhlayeh@5824 | 53 CONFIG_EAP_PEAP=y |
gokhlayeh@5824 | 54 |
gokhlayeh@5824 | 55 # EAP-GTC for the integrated EAP server |
gokhlayeh@5824 | 56 CONFIG_EAP_GTC=y |
gokhlayeh@5824 | 57 |
gokhlayeh@5824 | 58 # EAP-TTLS for the integrated EAP server |
gokhlayeh@5824 | 59 CONFIG_EAP_TTLS=y |
gokhlayeh@5824 | 60 |
gokhlayeh@5824 | 61 # EAP-SIM for the integrated EAP server |
gokhlayeh@5824 | 62 CONFIG_EAP_SIM=y |
gokhlayeh@5824 | 63 |
gokhlayeh@5824 | 64 # EAP-AKA for the integrated EAP server |
gokhlayeh@5824 | 65 CONFIG_EAP_AKA=y |
gokhlayeh@5824 | 66 |
gokhlayeh@5824 | 67 # EAP-PAX for the integrated EAP server |
gokhlayeh@5824 | 68 CONFIG_EAP_PAX=y |
gokhlayeh@5824 | 69 |
gokhlayeh@5824 | 70 # EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK) |
gokhlayeh@5824 | 71 CONFIG_EAP_PSK=y |
gokhlayeh@5824 | 72 |
gokhlayeh@5824 | 73 # EAP-SAKE for the integrated EAP server |
gokhlayeh@5824 | 74 CONFIG_EAP_SAKE=y |
gokhlayeh@5824 | 75 |
gokhlayeh@5824 | 76 # EAP-GPSK for the integrated EAP server |
gokhlayeh@5824 | 77 CONFIG_EAP_GPSK=y |
gokhlayeh@5824 | 78 # Include support for optional SHA256 cipher suite in EAP-GPSK |
gokhlayeh@5824 | 79 CONFIG_EAP_GPSK_SHA256=y |
gokhlayeh@5824 | 80 |
gokhlayeh@5824 | 81 # PKCS#12 (PFX) support (used to read private key and certificate file from |
gokhlayeh@5824 | 82 # a file that usually has extension .p12 or .pfx) |
gokhlayeh@5824 | 83 CONFIG_PKCS12=y |
gokhlayeh@5824 | 84 |
gokhlayeh@5824 | 85 # RADIUS authentication server. This provides access to the integrated EAP |
gokhlayeh@5824 | 86 # server from external hosts using RADIUS. |
gokhlayeh@5824 | 87 CONFIG_RADIUS_SERVER=y |
gokhlayeh@5824 | 88 |
gokhlayeh@5824 | 89 # Build IPv6 support for RADIUS operations |
gokhlayeh@5824 | 90 CONFIG_IPV6=y |
gokhlayeh@5824 | 91 |
gokhlayeh@5824 | 92 CONFIG_DRIVER_NL80211=y |
slaxemulator@12862 | 93 |
slaxemulator@12862 | 94 CONFIG_LIBNL32=y |