522250d
# Example wpa_supplicant build time configuration
522250d
#
522250d
# This file lists the configuration options that are used when building the
522250d
# wpa_supplicant binary. All lines starting with # are ignored. Configuration
522250d
# option lines must be commented out complete, if they are not to be included,
522250d
# i.e., just setting VARIABLE=n is not disabling that variable.
522250d
#
522250d
# This file is included in Makefile, so variables like CFLAGS and LIBS can also
522250d
# be modified from here. In most cases, these lines should use += in order not
522250d
# to override previous values of the variables.
522250d
522250d
522250d
# Uncomment following two lines and fix the paths if you have installed OpenSSL
522250d
# or GnuTLS in non-default location
522250d
#CFLAGS += -I/usr/local/openssl/include
522250d
#LIBS += -L/usr/local/openssl/lib
522250d
522250d
# Some Red Hat versions seem to include kerberos header files from OpenSSL, but
522250d
# the kerberos files are not in the default include path. Following line can be
522250d
# used to fix build issues on such systems (krb5.h not found).
522250d
#CFLAGS += -I/usr/include/kerberos
522250d
522250d
# Driver interface for generic Linux wireless extensions
522250d
# Note: WEXT is deprecated in the current Linux kernel version and no new
522250d
# functionality is added to it. nl80211-based interface is the new
522250d
# replacement for WEXT and its use allows wpa_supplicant to properly control
522250d
# the driver to improve existing functionality like roaming and to support new
522250d
# functionality.
2ea5edc
CONFIG_DRIVER_WEXT=y
522250d
522250d
# Driver interface for Linux drivers using the nl80211 kernel interface
10a0882
CONFIG_DRIVER_NL80211=y
522250d
522250d
# QCA vendor extensions to nl80211
522250d
#CONFIG_DRIVER_NL80211_QCA=y
522250d
522250d
# driver_nl80211.c requires libnl. If you are compiling it yourself
522250d
# you may need to point hostapd to your version of libnl.
522250d
#
522250d
#CFLAGS += -I$<path to libnl include files>
522250d
#LIBS += -L$<path to libnl library files>
522250d
522250d
# Use libnl v2.0 (or 3.0) libraries.
522250d
#CONFIG_LIBNL20=y
522250d
522250d
# Use libnl 3.2 libraries (if this is selected, CONFIG_LIBNL20 is ignored)
522250d
CONFIG_LIBNL32=y
522250d
522250d
522250d
# Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
522250d
#CONFIG_DRIVER_BSD=y
522250d
#CFLAGS += -I/usr/local/include
522250d
#LIBS += -L/usr/local/lib
522250d
#LIBS_p += -L/usr/local/lib
522250d
#LIBS_c += -L/usr/local/lib
522250d
522250d
# Driver interface for Windows NDIS
522250d
#CONFIG_DRIVER_NDIS=y
522250d
#CFLAGS += -I/usr/include/w32api/ddk
522250d
#LIBS += -L/usr/local/lib
522250d
# For native build using mingw
522250d
#CONFIG_NATIVE_WINDOWS=y
522250d
# Additional directories for cross-compilation on Linux host for mingw target
522250d
#CFLAGS += -I/opt/mingw/mingw32/include/ddk
522250d
#LIBS += -L/opt/mingw/mingw32/lib
522250d
#CC=mingw32-gcc
522250d
# By default, driver_ndis uses WinPcap for low-level operations. This can be
522250d
# replaced with the following option which replaces WinPcap calls with NDISUIO.
522250d
# However, this requires that WZC is disabled (net stop wzcsvc) before starting
522250d
# wpa_supplicant.
522250d
# CONFIG_USE_NDISUIO=y
522250d
522250d
# Driver interface for wired Ethernet drivers
1729a36
CONFIG_DRIVER_WIRED=y
522250d
522250d
# Driver interface for MACsec capable Qualcomm Atheros drivers
522250d
#CONFIG_DRIVER_MACSEC_QCA=y
522250d
522250d
# Driver interface for Linux MACsec drivers
fb7f665
CONFIG_DRIVER_MACSEC_LINUX=y
522250d
522250d
# Driver interface for the Broadcom RoboSwitch family
522250d
#CONFIG_DRIVER_ROBOSWITCH=y
522250d
522250d
# Driver interface for no driver (e.g., WPS ER only)
522250d
#CONFIG_DRIVER_NONE=y
522250d
522250d
# Solaris libraries
522250d
#LIBS += -lsocket -ldlpi -lnsl
522250d
#LIBS_c += -lsocket
522250d
522250d
# Enable IEEE 802.1X Supplicant (automatically included if any EAP method or
522250d
# MACsec is included)
2ea5edc
CONFIG_IEEE8021X_EAPOL=y
522250d
522250d
# EAP-MD5
2ea5edc
CONFIG_EAP_MD5=y
522250d
522250d
# EAP-MSCHAPv2
2ea5edc
CONFIG_EAP_MSCHAPV2=y
522250d
522250d
# EAP-TLS
2ea5edc
CONFIG_EAP_TLS=y
522250d
522250d
# EAL-PEAP
2ea5edc
CONFIG_EAP_PEAP=y
522250d
522250d
# EAP-TTLS
2ea5edc
CONFIG_EAP_TTLS=y
522250d
522250d
# EAP-FAST
522250d
# Note: If OpenSSL is used as the TLS library, OpenSSL 1.0 or newer is needed
522250d
# for EAP-FAST support. Older OpenSSL releases would need to be patched, e.g.,
522250d
# with openssl-0.9.8x-tls-extensions.patch, to add the needed functions.
10a0882
CONFIG_EAP_FAST=y
522250d
522250d
# EAP-GTC
2ea5edc
CONFIG_EAP_GTC=y
522250d
522250d
# EAP-OTP
2ea5edc
CONFIG_EAP_OTP=y
522250d
522250d
# EAP-SIM (enable CONFIG_PCSC, if EAP-SIM is used)
522250d
#CONFIG_EAP_SIM=y
522250d
522250d
# EAP-PSK (experimental; this is _not_ needed for WPA-PSK)
522250d
#CONFIG_EAP_PSK=y
522250d
522250d
# EAP-pwd (secure authentication using only a password)
522250d
#CONFIG_EAP_PWD=y
522250d
522250d
# EAP-PAX
2ea5edc
CONFIG_EAP_PAX=y
522250d
522250d
# LEAP
2ea5edc
CONFIG_EAP_LEAP=y
522250d
522250d
# EAP-AKA (enable CONFIG_PCSC, if EAP-AKA is used)
522250d
CONFIG_EAP_AKA=y
522250d
522250d
# EAP-AKA' (enable CONFIG_PCSC, if EAP-AKA' is used).
522250d
# This requires CONFIG_EAP_AKA to be enabled, too.
522250d
#CONFIG_EAP_AKA_PRIME=y
522250d
522250d
# Enable USIM simulator (Milenage) for EAP-AKA
522250d
#CONFIG_USIM_SIMULATOR=y
522250d
522250d
# EAP-SAKE
10a0882
CONFIG_EAP_SAKE=y
522250d
522250d
# EAP-GPSK
10a0882
CONFIG_EAP_GPSK=y
522250d
# Include support for optional SHA256 cipher suite in EAP-GPSK
10a0882
CONFIG_EAP_GPSK_SHA256=y
522250d
522250d
# EAP-TNC and related Trusted Network Connect support (experimental)
840f407
CONFIG_EAP_TNC=y
522250d
522250d
# Wi-Fi Protected Setup (WPS)
10a0882
CONFIG_WPS=y
522250d
# Enable WPS external registrar functionality
522250d
#CONFIG_WPS_ER=y
522250d
# Disable credentials for an open network by default when acting as a WPS
522250d
# registrar.
522250d
#CONFIG_WPS_REG_DISABLE_OPEN=y
522250d
# Enable WPS support with NFC config method
522250d
#CONFIG_WPS_NFC=y
522250d
522250d
# EAP-IKEv2
10a0882
CONFIG_EAP_IKEV2=y
522250d
522250d
# EAP-EKE
522250d
#CONFIG_EAP_EKE=y
522250d
522250d
# MACsec
522250d
CONFIG_MACSEC=y
522250d
522250d
# PKCS#12 (PFX) support (used to read private key and certificate file from
522250d
# a file that usually has extension .p12 or .pfx)
1729a36
CONFIG_PKCS12=y
522250d
522250d
# Smartcard support (i.e., private key on a smartcard), e.g., with openssl
522250d
# engine.
1729a36
CONFIG_SMARTCARD=y
522250d
522250d
# PC/SC interface for smartcards (USIM, GSM SIM)
522250d
# Enable this if EAP-SIM or EAP-AKA is included
522250d
#CONFIG_PCSC=y
522250d
522250d
# Support HT overrides (disable HT/HT40, mask MCS rates, etc.)
522250d
#CONFIG_HT_OVERRIDES=y
522250d
522250d
# Support VHT overrides (disable VHT, mask MCS rates, etc.)
522250d
#CONFIG_VHT_OVERRIDES=y
522250d
522250d
# Development testing
522250d
#CONFIG_EAPOL_TEST=y
522250d
522250d
# Select control interface backend for external programs, e.g, wpa_cli:
522250d
# unix = UNIX domain sockets (default for Linux/*BSD)
522250d
# udp = UDP sockets using localhost (127.0.0.1)
522250d
# udp6 = UDP IPv6 sockets using localhost (::1)
522250d
# named_pipe = Windows Named Pipe (default for Windows)
522250d
# udp-remote = UDP sockets with remote access (only for tests systems/purpose)
522250d
# udp6-remote = UDP IPv6 sockets with remote access (only for tests purpose)
522250d
# y = use default (backwards compatibility)
522250d
# If this option is commented out, control interface is not included in the
522250d
# build.
522250d
CONFIG_CTRL_IFACE=y
522250d
522250d
# Include support for GNU Readline and History Libraries in wpa_cli.
522250d
# When building a wpa_cli binary for distribution, please note that these
522250d
# libraries are licensed under GPL and as such, BSD license may not apply for
522250d
# the resulting binary.
522250d
#CONFIG_READLINE=y
522250d
522250d
# Include internal line edit mode in wpa_cli. This can be used as a replacement
522250d
# for GNU Readline to provide limited command line editing and history support.
522250d
#CONFIG_WPA_CLI_EDIT=y
522250d
522250d
# Remove debugging code that is printing out debug message to stdout.
522250d
# This can be used to reduce the size of the wpa_supplicant considerably
522250d
# if debugging code is not needed. The size reduction can be around 35%
522250d
# (e.g., 90 kB).
522250d
#CONFIG_NO_STDOUT_DEBUG=y
522250d
522250d
# Remove WPA support, e.g., for wired-only IEEE 802.1X supplicant, to save
522250d
# 35-50 kB in code size.
522250d
#CONFIG_NO_WPA=y
522250d
522250d
# Remove IEEE 802.11i/WPA-Personal ASCII passphrase support
522250d
# This option can be used to reduce code size by removing support for
522250d
# converting ASCII passphrases into PSK. If this functionality is removed, the
522250d
# PSK can only be configured as the 64-octet hexstring (e.g., from
522250d
# wpa_passphrase). This saves about 0.5 kB in code size.
522250d
#CONFIG_NO_WPA_PASSPHRASE=y
522250d
522250d
# Disable scan result processing (ap_mode=1) to save code size by about 1 kB.
522250d
# This can be used if ap_scan=1 mode is never enabled.
522250d
#CONFIG_NO_SCAN_PROCESSING=y
522250d
522250d
# Select configuration backend:
522250d
# file = text file (e.g., wpa_supplicant.conf; note: the configuration file
522250d
#	path is given on command line, not here; this option is just used to
522250d
#	select the backend that allows configuration files to be used)
522250d
# winreg = Windows registry (see win_example.reg for an example)
10a0882
CONFIG_BACKEND=file
522250d
522250d
# Remove configuration write functionality (i.e., to allow the configuration
522250d
# file to be updated based on runtime configuration changes). The runtime
522250d
# configuration can still be changed, the changes are just not going to be
522250d
# persistent over restarts. This option can be used to reduce code size by
522250d
# about 3.5 kB.
522250d
#CONFIG_NO_CONFIG_WRITE=y
522250d
522250d
# Remove support for configuration blobs to reduce code size by about 1.5 kB.
522250d
#CONFIG_NO_CONFIG_BLOBS=y
522250d
522250d
# Select program entry point implementation:
522250d
# main = UNIX/POSIX like main() function (default)
522250d
# main_winsvc = Windows service (read parameters from registry)
522250d
# main_none = Very basic example (development use only)
522250d
#CONFIG_MAIN=main
522250d
522250d
# Select wrapper for operating system and C library specific functions
522250d
# unix = UNIX/POSIX like systems (default)
522250d
# win32 = Windows systems
522250d
# none = Empty template
522250d
#CONFIG_OS=unix
522250d
522250d
# Select event loop implementation
522250d
# eloop = select() loop (default)
522250d
# eloop_win = Windows events and WaitForMultipleObject() loop
522250d
#CONFIG_ELOOP=eloop
522250d
522250d
# Should we use poll instead of select? Select is used by default.
522250d
#CONFIG_ELOOP_POLL=y
522250d
522250d
# Should we use epoll instead of select? Select is used by default.
522250d
#CONFIG_ELOOP_EPOLL=y
522250d
522250d
# Should we use kqueue instead of select? Select is used by default.
522250d
#CONFIG_ELOOP_KQUEUE=y
522250d
522250d
# Select layer 2 packet implementation
522250d
# linux = Linux packet socket (default)
522250d
# pcap = libpcap/libdnet/WinPcap
522250d
# freebsd = FreeBSD libpcap
522250d
# winpcap = WinPcap with receive thread
522250d
# ndis = Windows NDISUIO (note: requires CONFIG_USE_NDISUIO=y)
522250d
# none = Empty template
522250d
#CONFIG_L2_PACKET=linux
522250d
522250d
# Disable Linux packet socket workaround applicable for station interface
522250d
# in a bridge for EAPOL frames. This should be uncommented only if the kernel
522250d
# is known to not have the regression issue in packet socket behavior with
522250d
# bridge interfaces (commit 'bridge: respect RFC2863 operational state')').
522250d
#CONFIG_NO_LINUX_PACKET_SOCKET_WAR=y
522250d
522250d
# IEEE 802.11w (management frame protection), also known as PMF
522250d
# Driver support is also needed for IEEE 802.11w.
522250d
CONFIG_IEEE80211W=y
522250d
522250d
# Select TLS implementation
522250d
# openssl = OpenSSL (default)
522250d
# gnutls = GnuTLS
522250d
# internal = Internal TLSv1 implementation (experimental)
522250d
# linux = Linux kernel AF_ALG and internal TLSv1 implementation (experimental)
522250d
# none = Empty template
522250d
#CONFIG_TLS=openssl
522250d
522250d
# TLS-based EAP methods require at least TLS v1.0. Newer version of TLS (v1.1)
522250d
# can be enabled to get a stronger construction of messages when block ciphers
522250d
# are used. It should be noted that some existing TLS v1.0 -based
522250d
# implementation may not be compatible with TLS v1.1 message (ClientHello is
522250d
# sent prior to negotiating which version will be used)
522250d
#CONFIG_TLSV11=y
522250d
522250d
# TLS-based EAP methods require at least TLS v1.0. Newer version of TLS (v1.2)
522250d
# can be enabled to enable use of stronger crypto algorithms. It should be
522250d
# noted that some existing TLS v1.0 -based implementation may not be compatible
522250d
# with TLS v1.2 message (ClientHello is sent prior to negotiating which version
522250d
# will be used)
522250d
#CONFIG_TLSV12=y
522250d
522250d
# Select which ciphers to use by default with OpenSSL if the user does not
522250d
# specify them.
522250d
#CONFIG_TLS_DEFAULT_CIPHERS="DEFAULT:!EXP:!LOW"
522250d
CONFIG_TLS_DEFAULT_CIPHERS="PROFILE=SYSTEM:3DES"
522250d
522250d
# If CONFIG_TLS=internal is used, additional library and include paths are
522250d
# needed for LibTomMath. Alternatively, an integrated, minimal version of
522250d
# LibTomMath can be used. See beginning of libtommath.c for details on benefits
522250d
# and drawbacks of this option.
522250d
#CONFIG_INTERNAL_LIBTOMMATH=y
522250d
#ifndef CONFIG_INTERNAL_LIBTOMMATH
522250d
#LTM_PATH=/usr/src/libtommath-0.39
522250d
#CFLAGS += -I$(LTM_PATH)
522250d
#LIBS += -L$(LTM_PATH)
522250d
#LIBS_p += -L$(LTM_PATH)
522250d
#endif
522250d
# At the cost of about 4 kB of additional binary size, the internal LibTomMath
522250d
# can be configured to include faster routines for exptmod, sqr, and div to
522250d
# speed up DH and RSA calculation considerably
522250d
#CONFIG_INTERNAL_LIBTOMMATH_FAST=y
522250d
522250d
# Include NDIS event processing through WMI into wpa_supplicant/wpasvc.
522250d
# This is only for Windows builds and requires WMI-related header files and
522250d
# WbemUuid.Lib from Platform SDK even when building with MinGW.
522250d
#CONFIG_NDIS_EVENTS_INTEGRATED=y
522250d
#PLATFORMSDKLIB="/opt/Program Files/Microsoft Platform SDK/Lib"
522250d
522250d
# Add support for new DBus control interface
522250d
# (fi.w1.hostap.wpa_supplicant1)
522250d
CONFIG_CTRL_IFACE_DBUS_NEW=y
522250d
522250d
# Add introspection support for new DBus control interface
522250d
CONFIG_CTRL_IFACE_DBUS_INTRO=y
522250d
522250d
# Add support for loading EAP methods dynamically as shared libraries.
522250d
# When this option is enabled, each EAP method can be either included
522250d
# statically (CONFIG_EAP_<method>=y) or dynamically (CONFIG_EAP_<method>=dyn).
522250d
# Dynamic EAP methods are build as shared objects (eap_*.so) and they need to
522250d
# be loaded in the beginning of the wpa_supplicant configuration file
522250d
# (see load_dynamic_eap parameter in the example file) before being used in
522250d
# the network blocks.
522250d
#
522250d
# Note that some shared parts of EAP methods are included in the main program
522250d
# and in order to be able to use dynamic EAP methods using these parts, the
522250d
# main program must have been build with the EAP method enabled (=y or =dyn).
522250d
# This means that EAP-TLS/PEAP/TTLS/FAST cannot be added as dynamic libraries
522250d
# unless at least one of them was included in the main build to force inclusion
522250d
# of the shared code. Similarly, at least one of EAP-SIM/AKA must be included
522250d
# in the main build to be able to load these methods dynamically.
522250d
#
522250d
# Please also note that using dynamic libraries will increase the total binary
522250d
# size. Thus, it may not be the best option for targets that have limited
522250d
# amount of memory/flash.
522250d
#CONFIG_DYNAMIC_EAP_METHODS=y
522250d
522250d
# IEEE Std 802.11r-2008 (Fast BSS Transition) for station mode
522250d
CONFIG_IEEE80211R=y
522250d
522250d
# Add support for writing debug log to a file (/tmp/wpa_supplicant-log-#.txt)
522250d
CONFIG_DEBUG_FILE=y
522250d
522250d
# Send debug messages to syslog instead of stdout
522250d
CONFIG_DEBUG_SYSLOG=y
522250d
# Set syslog facility for debug messages
522250d
#CONFIG_DEBUG_SYSLOG_FACILITY=LOG_DAEMON
522250d
522250d
# Add support for sending all debug messages (regardless of debug verbosity)
522250d
# to the Linux kernel tracing facility. This helps debug the entire stack by
522250d
# making it easy to record everything happening from the driver up into the
522250d
# same file, e.g., using trace-cmd.
522250d
#CONFIG_DEBUG_LINUX_TRACING=y
522250d
522250d
# Add support for writing debug log to Android logcat instead of standard
522250d
# output
522250d
#CONFIG_ANDROID_LOG=y
522250d
522250d
# Enable privilege separation (see README 'Privilege separation' for details)
522250d
#CONFIG_PRIVSEP=y
522250d
522250d
# Enable mitigation against certain attacks against TKIP by delaying Michael
522250d
# MIC error reports by a random amount of time between 0 and 60 seconds
522250d
#CONFIG_DELAYED_MIC_ERROR_REPORT=y
522250d
522250d
# Enable tracing code for developer debugging
522250d
# This tracks use of memory allocations and other registrations and reports
522250d
# incorrect use with a backtrace of call (or allocation) location.
522250d
#CONFIG_WPA_TRACE=y
522250d
# For BSD, uncomment these.
522250d
#LIBS += -lexecinfo
522250d
#LIBS_p += -lexecinfo
522250d
#LIBS_c += -lexecinfo
522250d
522250d
# Use libbfd to get more details for developer debugging
522250d
# This enables use of libbfd to get more detailed symbols for the backtraces
522250d
# generated by CONFIG_WPA_TRACE=y.
522250d
#CONFIG_WPA_TRACE_BFD=y
522250d
# For BSD, uncomment these.
522250d
#LIBS += -lbfd -liberty -lz
522250d
#LIBS_p += -lbfd -liberty -lz
522250d
#LIBS_c += -lbfd -liberty -lz
522250d
522250d
# wpa_supplicant depends on strong random number generation being available
522250d
# from the operating system. os_get_random() function is used to fetch random
522250d
# data when needed, e.g., for key generation. On Linux and BSD systems, this
522250d
# works by reading /dev/urandom. It should be noted that the OS entropy pool
522250d
# needs to be properly initialized before wpa_supplicant is started. This is
522250d
# important especially on embedded devices that do not have a hardware random
522250d
# number generator and may by default start up with minimal entropy available
522250d
# for random number generation.
522250d
#
522250d
# As a safety net, wpa_supplicant is by default trying to internally collect
522250d
# additional entropy for generating random data to mix in with the data fetched
522250d
# from the OS. This by itself is not considered to be very strong, but it may
522250d
# help in cases where the system pool is not initialized properly. However, it
522250d
# is very strongly recommended that the system pool is initialized with enough
522250d
# entropy either by using hardware assisted random number generator or by
522250d
# storing state over device reboots.
522250d
#
522250d
# wpa_supplicant can be configured to maintain its own entropy store over
522250d
# restarts to enhance random number generation. This is not perfect, but it is
522250d
# much more secure than using the same sequence of random numbers after every
522250d
# reboot. This can be enabled with -e<entropy file> command line option. The
522250d
# specified file needs to be readable and writable by wpa_supplicant.
522250d
#
522250d
# If the os_get_random() is known to provide strong random data (e.g., on
522250d
# Linux/BSD, the board in question is known to have reliable source of random
522250d
# data from /dev/urandom), the internal wpa_supplicant random pool can be
522250d
# disabled. This will save some in binary size and CPU use. However, this
522250d
# should only be considered for builds that are known to be used on devices
522250d
# that meet the requirements described above.
522250d
#CONFIG_NO_RANDOM_POOL=y
522250d
522250d
# IEEE 802.11n (High Throughput) support (mainly for AP mode)
522250d
CONFIG_IEEE80211N=y
522250d
522250d
# IEEE 802.11ac (Very High Throughput) support (mainly for AP mode)
522250d
# (depends on CONFIG_IEEE80211N)
522250d
#CONFIG_IEEE80211AC=y
522250d
522250d
# Wireless Network Management (IEEE Std 802.11v-2011)
522250d
# Note: This is experimental and not complete implementation.
522250d
#CONFIG_WNM=y
522250d
522250d
# Interworking (IEEE 802.11u)
522250d
# This can be used to enable functionality to improve interworking with
522250d
# external networks (GAS/ANQP to learn more about the networks and network
522250d
# selection based on available credentials).
522250d
#CONFIG_INTERWORKING=y
522250d
522250d
# Hotspot 2.0
522250d
#CONFIG_HS20=y
522250d
522250d
# Enable interface matching in wpa_supplicant
522250d
#CONFIG_MATCH_IFACE=y
522250d
522250d
# Disable roaming in wpa_supplicant
522250d
#CONFIG_NO_ROAMING=y
522250d
522250d
# AP mode operations with wpa_supplicant
522250d
# This can be used for controlling AP mode operations with wpa_supplicant. It
522250d
# should be noted that this is mainly aimed at simple cases like
522250d
# WPA2-Personal while more complex configurations like WPA2-Enterprise with an
522250d
# external RADIUS server can be supported with hostapd.
16eae33
CONFIG_AP=y
522250d
522250d
# P2P (Wi-Fi Direct)
522250d
# This can be used to enable P2P support in wpa_supplicant. See README-P2P for
522250d
# more information on P2P operations.
16eae33
CONFIG_P2P=y
522250d
522250d
# Enable TDLS support
522250d
#CONFIG_TDLS=y
522250d
522250d
# Wi-Fi Direct
522250d
# This can be used to enable Wi-Fi Direct extensions for P2P using an external
522250d
# program to control the additional information exchanges in the messages.
Jiří Klimeš 73183ae
CONFIG_WIFI_DISPLAY=y
522250d
522250d
# Autoscan
522250d
# This can be used to enable automatic scan support in wpa_supplicant.
522250d
# See wpa_supplicant.conf for more information on autoscan usage.
522250d
#
522250d
# Enabling directly a module will enable autoscan support.
522250d
# For exponential module:
522250d
#CONFIG_AUTOSCAN_EXPONENTIAL=y
522250d
# For periodic module:
522250d
#CONFIG_AUTOSCAN_PERIODIC=y
522250d
522250d
# Password (and passphrase, etc.) backend for external storage
522250d
# These optional mechanisms can be used to add support for storing passwords
522250d
# and other secrets in external (to wpa_supplicant) location. This allows, for
522250d
# example, operating system specific key storage to be used
522250d
#
522250d
# External password backend for testing purposes (developer use)
522250d
#CONFIG_EXT_PASSWORD_TEST=y
522250d
522250d
# Enable Fast Session Transfer (FST)
522250d
#CONFIG_FST=y
522250d
522250d
# Enable CLI commands for FST testing
522250d
#CONFIG_FST_TEST=y
522250d
522250d
# OS X builds. This is only for building eapol_test.
522250d
#CONFIG_OSX=y
522250d
522250d
# Automatic Channel Selection
522250d
# This will allow wpa_supplicant to pick the channel automatically when channel
522250d
# is set to "0".
522250d
#
522250d
# TODO: Extend parser to be able to parse "channel=acs_survey" as an alternative
522250d
# to "channel=0". This would enable us to eventually add other ACS algorithms in
522250d
# similar way.
522250d
#
522250d
# Automatic selection is currently only done through initialization, later on
522250d
# we hope to do background checks to keep us moving to more ideal channels as
522250d
# time goes by. ACS is currently only supported through the nl80211 driver and
522250d
# your driver must have survey dump capability that is filled by the driver
522250d
# during scanning.
522250d
#
522250d
# TODO: In analogy to hostapd be able to customize the ACS survey algorithm with
522250d
# a newly to create wpa_supplicant.conf variable acs_num_scans.
522250d
#
522250d
# Supported ACS drivers:
522250d
# * ath9k
522250d
# * ath5k
522250d
# * ath10k
522250d
#
522250d
# For more details refer to:
522250d
# http://wireless.kernel.org/en/users/Documentation/acs
522250d
#CONFIG_ACS=y
522250d
522250d
# Support Multi Band Operation
522250d
#CONFIG_MBO=y
522250d
522250d
# Fast Initial Link Setup (FILS) (IEEE 802.11ai)
522250d
# Note: This is an experimental and not yet complete implementation. This
522250d
# should not be enabled for production use.
522250d
#CONFIG_FILS=y
522250d
# FILS shared key authentication with PFS
522250d
#CONFIG_FILS_SK_PFS=y
522250d
522250d
# Support RSN on IBSS networks
522250d
# This is needed to be able to use mode=1 network profile with proto=RSN and
522250d
# key_mgmt=WPA-PSK (i.e., full key management instead of WPA-None).
522250d
CONFIG_IBSS_RSN=y
522250d
522250d
# External PMKSA cache control
522250d
# This can be used to enable control interface commands that allow the current
522250d
# PMKSA cache entries to be fetched and new entries to be added.
522250d
#CONFIG_PMKSA_CACHE_EXTERNAL=y
522250d
522250d
# Mesh Networking (IEEE 802.11s)
966d547
CONFIG_MESH=y
522250d
522250d
# Background scanning modules
522250d
# These can be used to request wpa_supplicant to perform background scanning
522250d
# operations for roaming within an ESS (same SSID). See the bgscan parameter in
522250d
# the wpa_supplicant.conf file for more details.
522250d
# Periodic background scans based on signal strength
522250d
CONFIG_BGSCAN_SIMPLE=y
522250d
# Learn channels used by the network and try to avoid bgscans on other
522250d
# channels (experimental)
522250d
#CONFIG_BGSCAN_LEARN=y
522250d
522250d
# Opportunistic Wireless Encryption (OWE)
522250d
# Experimental implementation of draft-harkins-owe-07.txt
f0fc5fb
CONFIG_OWE=y
522250d
522250d
#CONFIG_FIPS=y
522250d
CONFIG_PEERKEY=y
966d547
966d547
# Simultaneous Authentication of Equals (SAE)
966d547
CONFIG_SAE=y
5731b54
5731b54
# Device Provisioning Protocol (DPP)
5731b54
CONFIG_DPP=y