move wpa_supplicant to trunk
[openwrt/svn-archive/archive.git] / package / wpa_supplicant / files / config.armeb
1 # Driver interface for Host AP driver
2 #CONFIG_DRIVER_HOSTAP=y
3
4 # Driver interface for Agere driver
5 #CONFIG_DRIVER_HERMES=y
6 # Change include directories to match with the local setup
7 #CFLAGS += -I../../hcf -I../../include -I../../include/hcf
8 #CFLAGS += -I../../include/wireless
9
10 # Driver interface for madwifi driver
11 #CONFIG_DRIVER_MADWIFI=y
12 # Change include directories to match with the local setup
13 #CFLAGS += -I../madwifi/wpa
14
15 # Driver interface for Prism54 driver
16 # (Note: Prism54 is not yet supported, i.e., this will not work as-is and is
17 # for developers only)
18 #CONFIG_DRIVER_PRISM54=y
19
20 # Driver interface for ndiswrapper
21 #CONFIG_DRIVER_NDISWRAPPER=y
22
23 # Driver interface for Atmel driver
24 #CONFIG_DRIVER_ATMEL=y
25
26 # Driver interface for Broadcom driver
27 # CONFIG_DRIVER_BROADCOM=y
28 # Example path for wlioctl.h; change to match your configuration
29 # CFLAGS += -I../nvram/include
30
31 # Driver interface for Intel ipw2100/2200 driver
32 #CONFIG_DRIVER_IPW=y
33
34 # Driver interface for generic Linux wireless extensions
35 CONFIG_DRIVER_WEXT=y
36
37 # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
38 #CONFIG_DRIVER_BSD=y
39 #CFLAGS += -I/usr/local/include
40 #LIBS += -L/usr/local/lib
41
42 # Driver interface for Windows NDIS
43 #CONFIG_DRIVER_NDIS=y
44 #CFLAGS += -I/usr/include/w32api/ddk
45 #LIBS += -L/usr/local/lib
46 # For native build using mingw
47 #CONFIG_NATIVE_WINDOWS=y
48 # Additional directories for cross-compilation on Linux host for mingw target
49 #CFLAGS += -I/opt/mingw/mingw32/include/ddk
50 #LIBS += -L/opt/mingw/mingw32/lib
51 #CC=mingw32-gcc
52
53 # Driver interface for development testing
54 #CONFIG_DRIVER_TEST=y
55
56 # Driver interface for wired Ethernet drivers
57 CONFIG_DRIVER_WIRED=y
58
59 # Enable IEEE 802.1X Supplicant (automatically included if any EAP method is
60 # included)
61 CONFIG_IEEE8021X_EAPOL=y
62
63 # EAP-MD5 (automatically included if EAP-TTLS is enabled)
64 CONFIG_EAP_MD5=y
65
66 # EAP-MSCHAPv2 (automatically included if EAP-PEAP is enabled)
67 CONFIG_EAP_MSCHAPV2=y
68
69 # EAP-TLS
70 CONFIG_EAP_TLS=y
71
72 # EAL-PEAP
73 CONFIG_EAP_PEAP=y
74
75 # EAP-TTLS
76 CONFIG_EAP_TTLS=y
77
78 # EAP-GTC
79 CONFIG_EAP_GTC=y
80
81 # EAP-OTP
82 CONFIG_EAP_OTP=y
83
84 # EAP-SIM (enable CONFIG_PCSC, if EAP-SIM is used)
85 #CONFIG_EAP_SIM=y
86
87 # EAP-PSK (experimental; this is _not_ needed for WPA-PSK)
88 #CONFIG_EAP_PSK=y
89
90 # EAP-PAX
91 #CONFIG_EAP_PAX=y
92
93 # LEAP
94 CONFIG_EAP_LEAP=y
95
96 # EAP-AKA (enable CONFIG_PCSC, if EAP-AKA is used)
97 #CONFIG_EAP_AKA=y
98
99 # PKCS#12 (PFX) support (used to read private key and certificate file from
100 # a file that usually has extension .p12 or .pfx)
101 CONFIG_PKCS12=y
102
103 # Smartcard support (i.e., private key on a smartcard), e.g., with openssl
104 # engine.
105 CONFIG_SMARTCARD=y
106
107 # PC/SC interface for smartcards (USIM, GSM SIM)
108 # Enable this if EAP-SIM or EAP-AKA is included
109 #CONFIG_PCSC=y
110
111 # Development testing
112 #CONFIG_EAPOL_TEST=y
113
114 # Replace native Linux implementation of packet sockets with libdnet/libpcap.
115 # This will be automatically set for non-Linux OS.
116 #CONFIG_DNET_PCAP=y
117
118 # Include control interface for external programs, e.g, wpa_cli
119 CONFIG_CTRL_IFACE=y
120
121 # Include support for GNU Readline and History Libraries in wpa_cli.
122 # When building a wpa_cli binary for distribution, please note that these
123 # libraries are licensed under GPL and as such, BSD license may not apply for
124 # the resulting binary.
125 #CONFIG_READLINE=y
126
127 # Remove debugging code that is printing out debug message to stdout.
128 # This can be used to reduce the size of the wpa_supplicant considerably
129 # if debugging code is not needed. The size reduction can be around 35%
130 # (e.g., 90 kB).
131 #CONFIG_NO_STDOUT_DEBUG=y
132
133 # Remove WPA support, e.g., for wired-only IEEE 802.1X supplicant, to save
134 # 35-50 kB in code size.
135 #CONFIG_NO_WPA=y
136
137 # Select configuration backend:
138 # file = text file (e.g., wpa_supplicant.conf)
139 CONFIG_BACKEND=file