]> git.ipfire.org Git - thirdparty/hostap.git/blame - hostapd/android.config
HE: Add HE channel management configuration options
[thirdparty/hostap.git] / hostapd / android.config
CommitLineData
5db49892
DS
1# Example hostapd build time configuration
2#
3# This file lists the configuration options that are used when building the
4# hostapd binary. All lines starting with # are ignored. Configuration option
5# lines must be commented out complete, if they are not to be included, i.e.,
6# just setting VARIABLE=n is not disabling that variable.
7#
8# This file is included in Makefile, so variables like CFLAGS and LIBS can also
9# be modified from here. In most cass, these lines should use += in order not
10# to override previous values of the variables.
11
12# Driver interface for Host AP driver
13#CONFIG_DRIVER_HOSTAP=y
14
15# Driver interface for wired authenticator
16#CONFIG_DRIVER_WIRED=y
17
5db49892
DS
18# Driver interface for drivers using the nl80211 kernel interface
19#CONFIG_DRIVER_NL80211=y
20# driver_nl80211.c requires a rather new libnl (version 1.1) which may not be
21# shipped with your distribution yet. If that is the case, you need to build
22# newer libnl version and point the hostapd build to use it.
23#LIBNL=/usr/src/libnl
24#CFLAGS += -I$(LIBNL)/include
25#LIBS += -L$(LIBNL)/lib
26CONFIG_LIBNL20=y
27
b658547d
JM
28# QCA vendor extensions to nl80211
29CONFIG_DRIVER_NL80211_QCA=y
30
5db49892
DS
31# Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
32#CONFIG_DRIVER_BSD=y
33#CFLAGS += -I/usr/local/include
34#LIBS += -L/usr/local/lib
35#LIBS_p += -L/usr/local/lib
36#LIBS_c += -L/usr/local/lib
37
38# Driver interface for no driver (e.g., RADIUS server only)
39#CONFIG_DRIVER_NONE=y
40
41# IEEE 802.11F/IAPP
42#CONFIG_IAPP=y
43
44# WPA2/IEEE 802.11i RSN pre-authentication
45#CONFIG_RSN_PREAUTH=y
46
5db49892
DS
47# IEEE 802.11w (management frame protection)
48# This version is an experimental implementation based on IEEE 802.11w/D1.0
49# draft and is subject to change since the standard has not yet been finalized.
50# Driver support is also needed for IEEE 802.11w.
962b8b36 51CONFIG_IEEE80211W=y
5db49892 52
138205d6
MV
53# Support Operating Channel Validation
54#CONFIG_OCV=y
55
5db49892
DS
56# Integrated EAP server
57#CONFIG_EAP=y
58
59# EAP-MD5 for the integrated EAP server
60#CONFIG_EAP_MD5=y
61
62# EAP-TLS for the integrated EAP server
63#CONFIG_EAP_TLS=y
64
65# EAP-MSCHAPv2 for the integrated EAP server
66#CONFIG_EAP_MSCHAPV2=y
67
68# EAP-PEAP for the integrated EAP server
69#CONFIG_EAP_PEAP=y
70
71# EAP-GTC for the integrated EAP server
72#CONFIG_EAP_GTC=y
73
74# EAP-TTLS for the integrated EAP server
75#CONFIG_EAP_TTLS=y
76
77# EAP-SIM for the integrated EAP server
78#CONFIG_EAP_SIM=y
79
80# EAP-AKA for the integrated EAP server
81#CONFIG_EAP_AKA=y
82
83# EAP-AKA' for the integrated EAP server
84# This requires CONFIG_EAP_AKA to be enabled, too.
85#CONFIG_EAP_AKA_PRIME=y
86
87# EAP-PAX for the integrated EAP server
88#CONFIG_EAP_PAX=y
89
90# EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK)
91#CONFIG_EAP_PSK=y
92
93# EAP-SAKE for the integrated EAP server
94#CONFIG_EAP_SAKE=y
95
96# EAP-GPSK for the integrated EAP server
97#CONFIG_EAP_GPSK=y
98# Include support for optional SHA256 cipher suite in EAP-GPSK
99#CONFIG_EAP_GPSK_SHA256=y
100
101# EAP-FAST for the integrated EAP server
102# Note: Default OpenSSL package does not include support for all the
103# functionality needed for EAP-FAST. If EAP-FAST is enabled with OpenSSL,
104# the OpenSSL library must be patched (openssl-0.9.9-session-ticket.patch)
105# to add the needed functions.
106#CONFIG_EAP_FAST=y
107
108# Wi-Fi Protected Setup (WPS)
109CONFIG_WPS=y
5db49892
DS
110# Enable UPnP support for external WPS Registrars
111#CONFIG_WPS_UPNP=y
112
113# EAP-IKEv2
114#CONFIG_EAP_IKEV2=y
115
116# Trusted Network Connect (EAP-TNC)
117#CONFIG_EAP_TNC=y
118
119# PKCS#12 (PFX) support (used to read private key and certificate file from
120# a file that usually has extension .p12 or .pfx)
121CONFIG_PKCS12=y
122
123# RADIUS authentication server. This provides access to the integrated EAP
124# server from external hosts using RADIUS.
125#CONFIG_RADIUS_SERVER=y
126
127# Build IPv6 support for RADIUS operations
128CONFIG_IPV6=y
129
130# IEEE Std 802.11r-2008 (Fast BSS Transition)
131#CONFIG_IEEE80211R=y
132
133# Use the hostapd's IEEE 802.11 authentication (ACL), but without
01b32d5e 134# the IEEE 802.11 Management capability (e.g., FreeBSD/net80211)
5db49892
DS
135#CONFIG_DRIVER_RADIUS_ACL=y
136
137# IEEE 802.11n (High Throughput) support
905d699d 138CONFIG_IEEE80211N=y
5db49892
DS
139
140# Remove debugging code that is printing out debug messages to stdout.
141# This can be used to reduce the size of the hostapd considerably if debugging
142# code is not needed.
143#CONFIG_NO_STDOUT_DEBUG=y
144
145# Add support for writing debug log to Android logcat instead of standard output
146CONFIG_ANDROID_LOG=y
147
148# Remove support for RADIUS accounting
149#CONFIG_NO_ACCOUNTING=y
150
151# Remove support for RADIUS
152CONFIG_NO_RADIUS=y
153
154# Remove support for VLANs
155#CONFIG_NO_VLAN=y
156
a1a31b6c 157# Remove support for dumping internal state through control interface commands
5db49892
DS
158# This can be used to reduce binary size at the cost of disabling a debugging
159# option.
160#CONFIG_NO_DUMP_STATE=y
161
162# Select wrapper for operatins system and C library specific functions
163# unix = UNIX/POSIX like systems (default)
164# win32 = Windows systems
165# none = Empty template
166CONFIG_OS=unix
167
168# Enable tracing code for developer debugging
169# This tracks use of memory allocations and other registrations and reports
170# incorrect use with a backtrace of call (or allocation) location.
171#CONFIG_WPA_TRACE=y
172# For BSD, comment out these.
173#LIBS += -lexecinfo
174#LIBS_p += -lexecinfo
175#LIBS_c += -lexecinfo
176
177# Use libbfd to get more details for developer debugging
178# This enables use of libbfd to get more detailed symbols for the backtraces
179# generated by CONFIG_WPA_TRACE=y.
180#CONFIG_WPA_TRACE_BFD=y
181# For BSD, comment out these.
182#LIBS += -lbfd -liberty -lz
183#LIBS_p += -lbfd -liberty -lz
184#LIBS_c += -lbfd -liberty -lz
185
de01710b
JM
186# Should we use poll instead of select? Select is used by default.
187#CONFIG_ELOOP_POLL=y
188
189# Should we use epoll instead of select? Select is used by default.
190#CONFIG_ELOOP_EPOLL=y
191
5db49892
DS
192# Enable AP
193CONFIG_AP=y
8cf53ec9
AN
194
195# Enable Fast Session Transfer (FST)
196#CONFIG_FST=y
fb9a1c3e
AS
197
198# Multiband Operation support
199# These extentions facilitate efficient use of multiple frequency bands
200# available to the AP and the devices that may associate with it.
201#CONFIG_MBO=y
bc4b680c
MK
202
203# Include internal line edit mode in hostapd_cli.
204CONFIG_WPA_CLI_EDIT=y
61152384
JM
205
206# Opportunistic Wireless Encryption (OWE)
207# Experimental implementation of draft-harkins-owe-07.txt
208#CONFIG_OWE=y
b65353a7
JVS
209
210# Wpa_supplicant's random pool is not necessary on Android. Randomness is
211# already provided by the entropymixer service which ensures sufficient
212# entropy is maintained across reboots. Commit b410eb1913 'Initialize
213# /dev/urandom earlier in boot' seeds /dev/urandom with that entropy before
214# either wpa_supplicant or hostapd are run.
215CONFIG_NO_RANDOM_POOL=y