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