Provide an i686 wpa_supplicant configuration file
[openwrt/openwrt.git] / package / wpa_supplicant / files / config.i686
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 # 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../madwifi/wpa
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
95 # Driver interface for development testing
96 #CONFIG_DRIVER_TEST=y
97
98 # Driver interface for wired Ethernet drivers
99 CONFIG_DRIVER_WIRED=y
100
101 # Enable IEEE 802.1X Supplicant (automatically included if any EAP method is
102 # included)
103 CONFIG_IEEE8021X_EAPOL=y
104
105 # EAP-MD5 (automatically included if EAP-TTLS is enabled)
106 CONFIG_EAP_MD5=y
107
108 # EAP-MSCHAPv2 (automatically included if EAP-PEAP is enabled)
109 CONFIG_EAP_MSCHAPV2=y
110
111 # EAP-TLS
112 CONFIG_EAP_TLS=y
113
114 # EAL-PEAP
115 CONFIG_EAP_PEAP=y
116
117 # EAP-TTLS
118 CONFIG_EAP_TTLS=y
119
120 # EAP-GTC
121 CONFIG_EAP_GTC=y
122
123 # EAP-OTP
124 CONFIG_EAP_OTP=y
125
126 # EAP-SIM (enable CONFIG_PCSC, if EAP-SIM is used)
127 #CONFIG_EAP_SIM=y
128
129 # EAP-PSK (experimental; this is _not_ needed for WPA-PSK)
130 #CONFIG_EAP_PSK=y
131
132 # EAP-PAX
133 #CONFIG_EAP_PAX=y
134
135 # LEAP
136 CONFIG_EAP_LEAP=y
137
138 # EAP-AKA (enable CONFIG_PCSC, if EAP-AKA is used)
139 #CONFIG_EAP_AKA=y
140
141 # PKCS#12 (PFX) support (used to read private key and certificate file from
142 # a file that usually has extension .p12 or .pfx)
143 CONFIG_PKCS12=y
144
145 # Smartcard support (i.e., private key on a smartcard), e.g., with openssl
146 # engine.
147 CONFIG_SMARTCARD=y
148
149 # PC/SC interface for smartcards (USIM, GSM SIM)
150 # Enable this if EAP-SIM or EAP-AKA is included
151 #CONFIG_PCSC=y
152
153 # Development testing
154 #CONFIG_EAPOL_TEST=y
155
156 # Replace native Linux implementation of packet sockets with libdnet/libpcap.
157 # This will be automatically set for non-Linux OS.
158 #CONFIG_DNET_PCAP=y
159
160 # Include control interface for external programs, e.g, wpa_cli
161 CONFIG_CTRL_IFACE=y
162
163 # Include support for GNU Readline and History Libraries in wpa_cli.
164 # When building a wpa_cli binary for distribution, please note that these
165 # libraries are licensed under GPL and as such, BSD license may not apply for
166 # the resulting binary.
167 #CONFIG_READLINE=y
168
169 # Remove debugging code that is printing out debug message to stdout.
170 # This can be used to reduce the size of the wpa_supplicant considerably
171 # if debugging code is not needed. The size reduction can be around 35%
172 # (e.g., 90 kB).
173 #CONFIG_NO_STDOUT_DEBUG=y
174
175 # Remove WPA support, e.g., for wired-only IEEE 802.1X supplicant, to save
176 # 35-50 kB in code size.
177 #CONFIG_NO_WPA=y
178
179 # Select configuration backend:
180 # file = text file (e.g., wpa_supplicant.conf)
181 CONFIG_BACKEND=file