summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.10/defconfig-0.6.0-gnutls
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.10/defconfig-0.6.0-gnutls')
-rw-r--r--meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.10/defconfig-0.6.0-gnutls180
1 files changed, 0 insertions, 180 deletions
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.10/defconfig-0.6.0-gnutls b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.10/defconfig-0.6.0-gnutls
deleted file mode 100644
index e907271547..0000000000
--- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.6.10/defconfig-0.6.0-gnutls
+++ /dev/null
@@ -1,180 +0,0 @@
1# This file lists the configuration options that are used when building the
2# hostapd binary. All lines starting with # are ignored. Configuration option
3# lines must be commented out complete, if they are not to be included, i.e.,
4# just setting VARIABLE=n is not disabling that variable.
5#
6# This file is included in Makefile, so variables like CFLAGS and LIBS can also
7# be modified from here. In most cass, these lines should use += in order not
8# to override previous values of the variables.
9
10CFLAGS = $(TARGET_CFLAGS) -I../src/hostapd -I../src/utils -I../src/driver/modules -I../src/rsn_supp -I../src/common -I../src/crypto -I../src -I./ -Wall -MMD
11LIBS = $(TARGET_LDFLAGS)
12
13# Driver interface for Host AP driver
14CONFIG_DRIVER_HOSTAP=y
15
16# Driver interface for Agere driver
17#CONFIG_DRIVER_HERMES=y
18#CFLAGS += -I../../hcf -I../../include -I../../include/hcf
19
20# Driver interface for madwifi driver
21#CONFIG_DRIVER_MADWIFI=y
22#CFLAGS += -I../madwifi/wpa
23
24# Driver interface for Prism54 driver
25#CONFIG_DRIVER_PRISM54=y
26
27# Driver interface for ndiswrapper
28#CONFIG_DRIVER_NDISWRAPPER=y
29
30# Driver interface for Atmel driver
31#CONFIG_DRIVER_ATMEL=y
32
33# Driver interface for Broadcom driver
34#CONFIG_DRIVER_BROADCOM=y
35#CFLAGS += -I/opt/WRT54GS/release/src/include
36
37# Driver interface for Intel ipw2100 driver
38#CONFIG_DRIVER_IPW2100=y
39
40# Driver interface for generic Linux wireless extensions
41CONFIG_DRIVER_WEXT=y
42
43# Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
44#CONFIG_DRIVER_BSD=y
45#CFLAGS += -I/usr/local/include
46#LIBS += -L/usr/local/lib
47
48# Driver interface for development testing
49#CONFIG_DRIVER_TEST=y
50
51# Driver interface for wired Ethernet drivers
52CONFIG_DRIVER_WIRED=y
53
54# Enable IEEE 802.1X Supplicant (automatically included if any EAP method is
55# included)
56CONFIG_IEEE8021X_EAPOL=y
57
58# EAP-MD5 (automatically included if EAP-TTLS is enabled)
59CONFIG_EAP_MD5=y
60
61# EAP-MSCHAPv2 (automatically included if EAP-PEAP is enabled)
62CONFIG_EAP_MSCHAPV2=y
63
64# EAP-TLS
65CONFIG_EAP_TLS=y
66
67# EAL-PEAP
68CONFIG_EAP_PEAP=y
69
70# EAP-TTLS
71CONFIG_EAP_TTLS=y
72
73# EAP-GTC
74CONFIG_EAP_GTC=y
75
76# EAP-OTP
77CONFIG_EAP_OTP=y
78
79# EAP-SIM (enable CONFIG_PCSC, if EAP-SIM is used)
80#CONFIG_EAP_SIM=y
81
82# EAP-PSK (experimental; this is _not_ needed for WPA-PSK)
83#CONFIG_EAP_PSK=y
84
85# EAP-PAX
86#CONFIG_EAP_PAX=y
87
88# LEAP
89CONFIG_EAP_LEAP=y
90
91# EAP-AKA (enable CONFIG_PCSC, if EAP-AKA is used)
92#CONFIG_EAP_AKA=y
93
94# PKCS#12 (PFX) support (used to read private key and certificate file from
95# a file that usually has extension .p12 or .pfx)
96CONFIG_PKCS12=y
97
98# Smartcard support (i.e., private key on a smartcard), e.g., with openssl
99# engine.
100CONFIG_SMARTCARD=y
101
102# PC/SC interface for smartcards (USIM, GSM SIM)
103# Enable this if EAP-SIM or EAP-AKA is included
104#CONFIG_PCSC=y
105
106# Development testing
107#CONFIG_EAPOL_TEST=y
108
109# Replace native Linux implementation of packet sockets with libdnet/libpcap.
110# This will be automatically set for non-Linux OS.
111#CONFIG_DNET_PCAP=y
112
113# Include control interface for external programs, e.g, wpa_cli
114CONFIG_CTRL_IFACE=y
115
116# Include support for GNU Readline and History Libraries in wpa_cli.
117# When building a wpa_cli binary for distribution, please note that these
118# libraries are licensed under GPL and as such, BSD license may not apply for
119# the resulting binary.
120#CONFIG_READLINE=y
121
122# Remove debugging code that is printing out debug message to stdout.
123# This can be used to reduce the size of the wpa_supplicant considerably
124# if debugging code is not needed. The size reduction can be around 35%
125# (e.g., 90 kB).
126#CONFIG_NO_STDOUT_DEBUG=y
127
128# Remove WPA support, e.g., for wired-only IEEE 802.1X supplicant, to save
129# 35-50 kB in code size.
130#CONFIG_NO_WPA=y
131
132# Select configuration backend:
133# file = text file (e.g., wpa_supplicant.conf)
134# winreg = Windows registry (see win_example.reg for an example)
135CONFIG_BACKEND=file
136
137# Select program entry point implementation:
138# main = UNIX/POSIX like main() function (default)
139# main_winsvc = Windows service (read parameters from registry)
140# main_none = Very basic example (development use only)
141#CONFIG_MAIN=main
142
143# Select wrapper for operatins system and C library specific functions
144# unix = UNIX/POSIX like systems (default)
145# win32 = Windows systems
146# none = Empty template
147#CONFIG_OS=unix
148
149# Select event loop implementation
150# eloop = select() loop (default)
151# eloop_win = Windows events and WaitForMultipleObject() loop
152# eloop_none = Empty template
153#CONFIG_ELOOP=eloop
154
155# Select layer 2 packet implementation
156# linux = Linux packet socket (default)
157# pcap = libpcap/libdnet/WinPcap
158# freebsd = FreeBSD libpcap
159# winpcap = WinPcap with receive thread
160# none = Empty template
161#CONFIG_L2_PACKET=linux
162
163# IEEE 802.11i/IEEE 802.11e STAKey negotiation for direct link connection
164#CONFIG_STAKEY=y
165
166# Select TLS implementation
167# openssl = OpenSSL (default)
168# gnutls = GnuTLS (needed for TLS/IA, see also CONFIG_GNUTLS_EXTRA)
169# none = Empty template
170CONFIG_TLS=gnutls
171
172# Whether to enable TLS/IA support, which is required for EAP-TTLSv1.
173# You need CONFIG_TLS=gnutls for this to have any effect. Please note that
174# even though the core GnuTLS library is released under LGPL, this extra
175# library uses GPL and as such, the terms of GPL apply to the combination
176# of wpa_supplicant and GnuTLS if this option is enabled. BSD license may not
177# apply for distribution of the resulting binary.
178CONFIG_GNUTLS_EXTRA=y
179
180CONFIG_CTRL_IFACE_DBUS=y