]> git.ipfire.org Git - ipfire-2.x.git/blob - config/wpa_supplicant/config
Readd madwifi, hostapd & wpa_supplicant
[ipfire-2.x.git] / config / wpa_supplicant / config
1 # Example wpa_supplicant 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 cases, these lines should use += in order not
10 # to override previous values of the variables.
11
12
13 # Uncomment following two lines and fix the paths if you have installed OpenSSL
14 # or GnuTLS in non-default location
15 #CFLAGS += -I/usr/local/openssl/include
16 #LIBS += -L/usr/local/openssl/lib
17
18 # Some Red Hat versions seem to include kerberos header files from OpenSSL, but
19 # the kerberos files are not in the default include path. Following line can be
20 # used to fix build issues on such systems (krb5.h not found).
21 #CFLAGS += -I/usr/include/kerberos
22
23 # Example configuration for various cross-compilation platforms
24
25 #### sveasoft (e.g., for Linksys WRT54G) ######################################
26 #CC=mipsel-uclibc-gcc
27 #CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc
28 #CFLAGS += -Os
29 #CPPFLAGS += -I../src/include -I../../src/router/openssl/include
30 #LIBS += -L/opt/brcm/hndtools-mipsel-uclibc-0.9.19/lib -lssl
31 ###############################################################################
32
33 #### openwrt (e.g., for Linksys WRT54G) #######################################
34 #CC=mipsel-uclibc-gcc
35 #CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc
36 #CFLAGS += -Os
37 #CPPFLAGS=-I../src/include -I../openssl-0.9.7d/include \
38 # -I../WRT54GS/release/src/include
39 #LIBS = -lssl
40 ###############################################################################
41
42
43 # Driver interface for Host AP driver
44 CONFIG_DRIVER_HOSTAP=y
45
46 # Driver interface for Agere driver
47 #CONFIG_DRIVER_HERMES=y
48 # Change include directories to match with the local setup
49 #CFLAGS += -I../../hcf -I../../include -I../../include/hcf
50 #CFLAGS += -I../../include/wireless
51
52 # Driver interface for madwifi driver
53 CONFIG_DRIVER_MADWIFI=y
54 # Change include directories to match with the local setup
55 CFLAGS += -I/usr/src/madwifi/
56
57 # Driver interface for Prism54 driver
58 # (Note: Prism54 is not yet supported, i.e., this will not work as-is and is
59 # for developers only)
60 #CONFIG_DRIVER_PRISM54=y
61
62 # Driver interface for ndiswrapper
63 CONFIG_DRIVER_NDISWRAPPER=y
64
65 # Driver interface for Atmel driver
66 CONFIG_DRIVER_ATMEL=y
67
68 # Driver interface for Broadcom driver
69 #CONFIG_DRIVER_BROADCOM=y
70 # Example path for wlioctl.h; change to match your configuration
71 #CFLAGS += -I/opt/WRT54GS/release/src/include
72
73 # Driver interface for Intel ipw2100/2200 driver
74 CONFIG_DRIVER_IPW=y
75
76 # Driver interface for generic Linux wireless extensions
77 CONFIG_DRIVER_WEXT=y
78
79 # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
80 #CONFIG_DRIVER_BSD=y
81 #CFLAGS += -I/usr/local/include
82 #LIBS += -L/usr/local/lib
83
84 # Driver interface for Windows NDIS
85 #CONFIG_DRIVER_NDIS=y
86 #CFLAGS += -I/usr/include/w32api/ddk
87 #LIBS += -L/usr/local/lib
88 # For native build using mingw
89 #CONFIG_NATIVE_WINDOWS=y
90 # Additional directories for cross-compilation on Linux host for mingw target
91 #CFLAGS += -I/opt/mingw/mingw32/include/ddk
92 #LIBS += -L/opt/mingw/mingw32/lib
93 #CC=mingw32-gcc
94 # By default, driver_ndis uses WinPcap for low-level operations. This can be
95 # replaced with the following option which replaces WinPcap calls with NDISUIO.
96 # However, this requires that WZC is disabled (net stop wzcsvc) before starting
97 # wpa_supplicant.
98 # CONFIG_USE_NDISUIO=y
99
100 # Driver interface for development testing
101 #CONFIG_DRIVER_TEST=y
102
103 # Driver interface for wired Ethernet drivers
104 CONFIG_DRIVER_WIRED=y
105
106 # Enable IEEE 802.1X Supplicant (automatically included if any EAP method is
107 # included)
108 CONFIG_IEEE8021X_EAPOL=y
109
110 # EAP-MD5
111 CONFIG_EAP_MD5=y
112
113 # EAP-MSCHAPv2
114 CONFIG_EAP_MSCHAPV2=y
115
116 # EAP-TLS
117 CONFIG_EAP_TLS=y
118
119 # EAL-PEAP
120 CONFIG_EAP_PEAP=y
121
122 # EAP-TTLS
123 CONFIG_EAP_TTLS=y
124
125 # EAP-GTC
126 CONFIG_EAP_GTC=y
127
128 # EAP-OTP
129 CONFIG_EAP_OTP=y
130
131 # EAP-SIM (enable CONFIG_PCSC, if EAP-SIM is used)
132 #CONFIG_EAP_SIM=y
133
134 # EAP-PSK (experimental; this is _not_ needed for WPA-PSK)
135 #CONFIG_EAP_PSK=y
136
137 # EAP-PAX
138 #CONFIG_EAP_PAX=y
139
140 # LEAP
141 CONFIG_EAP_LEAP=y
142
143 # EAP-AKA (enable CONFIG_PCSC, if EAP-AKA is used)
144 #CONFIG_EAP_AKA=y
145
146 # EAP-SAKE
147 #CONFIG_EAP_SAKE=y
148
149 # EAP-GPSK
150 #CONFIG_EAP_GPSK=y
151 # Include support for optional SHA256 cipher suite in EAP-GPSK
152 #CONFIG_EAP_GPSK_SHA256=y
153
154 # PKCS#12 (PFX) support (used to read private key and certificate file from
155 # a file that usually has extension .p12 or .pfx)
156 CONFIG_PKCS12=y
157
158 # Smartcard support (i.e., private key on a smartcard), e.g., with openssl
159 # engine.
160 CONFIG_SMARTCARD=y
161
162 # PC/SC interface for smartcards (USIM, GSM SIM)
163 # Enable this if EAP-SIM or EAP-AKA is included
164 #CONFIG_PCSC=y
165
166 # Development testing
167 #CONFIG_EAPOL_TEST=y
168
169 # Select control interface backend for external programs, e.g, wpa_cli:
170 # unix = UNIX domain sockets (default for Linux/*BSD)
171 # udp = UDP sockets using localhost (127.0.0.1)
172 # named_pipe = Windows Named Pipe (default for Windows)
173 # y = use default (backwards compatibility)
174 # If this option is commented out, control interface is not included in the
175 # build.
176 CONFIG_CTRL_IFACE=y
177
178 # Include support for GNU Readline and History Libraries in wpa_cli.
179 # When building a wpa_cli binary for distribution, please note that these
180 # libraries are licensed under GPL and as such, BSD license may not apply for
181 # the resulting binary.
182 #CONFIG_READLINE=y
183
184 # Remove debugging code that is printing out debug message to stdout.
185 # This can be used to reduce the size of the wpa_supplicant considerably
186 # if debugging code is not needed. The size reduction can be around 35%
187 # (e.g., 90 kB).
188 #CONFIG_NO_STDOUT_DEBUG=y
189
190 # Remove WPA support, e.g., for wired-only IEEE 802.1X supplicant, to save
191 # 35-50 kB in code size.
192 #CONFIG_NO_WPA=y
193
194 # Remove WPA2 support. This allows WPA to be used, but removes WPA2 code to
195 # save about 1 kB in code size when building only WPA-Personal (no EAP support)
196 # or 6 kB if building for WPA-Enterprise.
197 #CONFIG_NO_WPA2=y
198
199 # Remove AES extra functions. This can be used to reduce code size by about
200 # 1.5 kB by removing extra AES modes that are not needed for commonly used
201 # client configurations (they are needed for some EAP types).
202 #CONFIG_NO_AES_EXTRAS=y
203
204 # Select configuration backend:
205 # file = text file (e.g., wpa_supplicant.conf)
206 # winreg = Windows registry (see win_example.reg for an example)
207 CONFIG_BACKEND=file
208
209 # Select program entry point implementation:
210 # main = UNIX/POSIX like main() function (default)
211 # main_winsvc = Windows service (read parameters from registry)
212 # main_none = Very basic example (development use only)
213 #CONFIG_MAIN=main
214
215 # Select wrapper for operatins system and C library specific functions
216 # unix = UNIX/POSIX like systems (default)
217 # win32 = Windows systems
218 # none = Empty template
219 #CONFIG_OS=unix
220
221 # Select event loop implementation
222 # eloop = select() loop (default)
223 # eloop_win = Windows events and WaitForMultipleObject() loop
224 # eloop_none = Empty template
225 #CONFIG_ELOOP=eloop
226
227 # Select layer 2 packet implementation
228 # linux = Linux packet socket (default)
229 # pcap = libpcap/libdnet/WinPcap
230 # freebsd = FreeBSD libpcap
231 # winpcap = WinPcap with receive thread
232 # ndis = Windows NDISUIO (note: requires CONFIG_USE_NDISUIO=y)
233 # none = Empty template
234 #CONFIG_L2_PACKET=linux
235
236 # PeerKey handshake for Station to Station Link (IEEE 802.11e DLS)
237 CONFIG_PEERKEY=y
238
239 # IEEE 802.11w (management frame protection)
240 # This version is an experimental implementation based on IEEE 802.11w/D1.0
241 # draft and is subject to change since the standard has not yet been finalized.
242 # Driver support is also needed for IEEE 802.11w.
243 #CONFIG_IEEE80211W=y
244
245 # Select TLS implementation
246 # openssl = OpenSSL (default)
247 # gnutls = GnuTLS (needed for TLS/IA, see also CONFIG_GNUTLS_EXTRA)
248 # internal = Internal TLSv1 implementation (experimental)
249 # none = Empty template
250 #CONFIG_TLS=openssl
251
252 # Whether to enable TLS/IA support, which is required for EAP-TTLSv1.
253 # You need CONFIG_TLS=gnutls for this to have any effect. Please note that
254 # even though the core GnuTLS library is released under LGPL, this extra
255 # library uses GPL and as such, the terms of GPL apply to the combination
256 # of wpa_supplicant and GnuTLS if this option is enabled. BSD license may not
257 # apply for distribution of the resulting binary.
258 #CONFIG_GNUTLS_EXTRA=y
259
260 # If CONFIG_TLS=internal is used, additional library and include paths are
261 # needed for LibTomMath. Alternatively, an integrated, minimal version of
262 # LibTomMath can be used. See beginning of libtommath.c for details on benefits
263 # and drawbacks of this option.
264 #CONFIG_INTERNAL_LIBTOMMATH=y
265 #ifndef CONFIG_INTERNAL_LIBTOMMATH
266 #LTM_PATH=/usr/src/libtommath-0.39
267 #CFLAGS += -I$(LTM_PATH)
268 #LIBS += -L$(LTM_PATH)
269 #LIBS_p += -L$(LTM_PATH)
270 #endif
271
272 # Include NDIS event processing through WMI into wpa_supplicant/wpasvc.
273 # This is only for Windows builds and requires WMI-related header files and
274 # WbemUuid.Lib from Platform SDK even when building with MinGW.
275 #CONFIG_NDIS_EVENTS_INTEGRATED=y
276 #PLATFORMSDKLIB="/opt/Program Files/Microsoft Platform SDK/Lib"
277
278 # Add support for DBus control interface
279 #CONFIG_CTRL_IFACE_DBUS=y
280
281 # Add support for loading EAP methods dynamically as shared libraries.
282 # When this option is enabled, each EAP method can be either included
283 # statically (CONFIG_EAP_<method>=y) or dynamically (CONFIG_EAP_<method>=dyn).
284 # Dynamic EAP methods are build as shared objects (eap_*.so) and they need to
285 # be loaded in the beginning of the wpa_supplicant configuration file
286 # (see load_dynamic_eap parameter in the example file) before being used in
287 # the network blocks.
288 #
289 # Note that some shared parts of EAP methods are included in the main program
290 # and in order to be able to use dynamic EAP methods using these parts, the
291 # main program must have been build with the EAP method enabled (=y or =dyn).
292 # This means that EAP-TLS/PEAP/TTLS/FAST cannot be added as dynamic libraries
293 # unless at least one of them was included in the main build to force inclusion
294 # of the shared code. Similarly, at least one of EAP-SIM/AKA must be included
295 # in the main build to be able to load these methods dynamically.
296 #
297 # Please also note that using dynamic libraries will increase the total binary
298 # size. Thus, it may not be the best option for targets that have limited
299 # amount of memory/flash.
300 #CONFIG_DYNAMIC_EAP_METHODS=y
301
302 # Include client MLME (management frame processing).
303 # This can be used to move MLME processing of Devicescape IEEE 802.11 stack
304 # into user space.
305 #CONFIG_CLIENT_MLME=y
306 # Currently, driver_devicescape.c build requires some additional parameters
307 # to be able to include some of the kernel header files. Following lines can
308 # be used to set these (WIRELESS_DEV must point to the root directory of the
309 # wireless-dev.git tree).
310 #WIRELESS_DEV=/usr/src/wireless-dev
311 #CFLAGS += -I$(WIRELESS_DEV)/include
312 #CFLAGS += -I$(WIRELESS_DEV)/net/d80211
313 #CFLAGS += -D_LINUX_TYPES_H