defconfig 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  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. # Uncomment following two lines and fix the paths if you have installed OpenSSL
  12. # or GnuTLS in non-default location
  13. #CFLAGS += -I/usr/local/openssl/include
  14. #LIBS += -L/usr/local/openssl/lib
  15. # Some Red Hat versions seem to include kerberos header files from OpenSSL, but
  16. # the kerberos files are not in the default include path. Following line can be
  17. # used to fix build issues on such systems (krb5.h not found).
  18. #CFLAGS += -I/usr/include/kerberos
  19. # Driver interface for generic Linux wireless extensions
  20. # Note: WEXT is deprecated in the current Linux kernel version and no new
  21. # functionality is added to it. nl80211-based interface is the new
  22. # replacement for WEXT and its use allows wpa_supplicant to properly control
  23. # the driver to improve existing functionality like roaming and to support new
  24. # functionality.
  25. CONFIG_DRIVER_WEXT=y
  26. # Driver interface for Linux drivers using the nl80211 kernel interface
  27. CONFIG_DRIVER_NL80211=y
  28. # QCA vendor extensions to nl80211
  29. #CONFIG_DRIVER_NL80211_QCA=y
  30. # driver_nl80211.c requires libnl. If you are compiling it yourself
  31. # you may need to point hostapd to your version of libnl.
  32. #
  33. #CFLAGS += -I$<path to libnl include files>
  34. #LIBS += -L$<path to libnl library files>
  35. # Use libnl v2.0 (or 3.0) libraries.
  36. #CONFIG_LIBNL20=y
  37. # Use libnl 3.2 libraries (if this is selected, CONFIG_LIBNL20 is ignored)
  38. #CONFIG_LIBNL32=y
  39. # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
  40. #CONFIG_DRIVER_BSD=y
  41. #CFLAGS += -I/usr/local/include
  42. #LIBS += -L/usr/local/lib
  43. #LIBS_p += -L/usr/local/lib
  44. #LIBS_c += -L/usr/local/lib
  45. # Driver interface for Windows NDIS
  46. #CONFIG_DRIVER_NDIS=y
  47. #CFLAGS += -I/usr/include/w32api/ddk
  48. #LIBS += -L/usr/local/lib
  49. # For native build using mingw
  50. #CONFIG_NATIVE_WINDOWS=y
  51. # Additional directories for cross-compilation on Linux host for mingw target
  52. #CFLAGS += -I/opt/mingw/mingw32/include/ddk
  53. #LIBS += -L/opt/mingw/mingw32/lib
  54. #CC=mingw32-gcc
  55. # By default, driver_ndis uses WinPcap for low-level operations. This can be
  56. # replaced with the following option which replaces WinPcap calls with NDISUIO.
  57. # However, this requires that WZC is disabled (net stop wzcsvc) before starting
  58. # wpa_supplicant.
  59. # CONFIG_USE_NDISUIO=y
  60. # Driver interface for wired Ethernet drivers
  61. CONFIG_DRIVER_WIRED=y
  62. # Driver interface for the Broadcom RoboSwitch family
  63. #CONFIG_DRIVER_ROBOSWITCH=y
  64. # Driver interface for no driver (e.g., WPS ER only)
  65. #CONFIG_DRIVER_NONE=y
  66. # Solaris libraries
  67. #LIBS += -lsocket -ldlpi -lnsl
  68. #LIBS_c += -lsocket
  69. # Enable IEEE 802.1X Supplicant (automatically included if any EAP method is
  70. # included)
  71. CONFIG_IEEE8021X_EAPOL=y
  72. # EAP-MD5
  73. CONFIG_EAP_MD5=y
  74. # EAP-MSCHAPv2
  75. CONFIG_EAP_MSCHAPV2=y
  76. # EAP-TLS
  77. CONFIG_EAP_TLS=y
  78. # EAL-PEAP
  79. CONFIG_EAP_PEAP=y
  80. # EAP-TTLS
  81. CONFIG_EAP_TTLS=y
  82. # EAP-FAST
  83. # Note: If OpenSSL is used as the TLS library, OpenSSL 1.0 or newer is needed
  84. # for EAP-FAST support. Older OpenSSL releases would need to be patched, e.g.,
  85. # with openssl-0.9.8x-tls-extensions.patch, to add the needed functions.
  86. #CONFIG_EAP_FAST=y
  87. # EAP-GTC
  88. CONFIG_EAP_GTC=y
  89. # EAP-OTP
  90. CONFIG_EAP_OTP=y
  91. # EAP-SIM (enable CONFIG_PCSC, if EAP-SIM is used)
  92. #CONFIG_EAP_SIM=y
  93. # EAP-PSK (experimental; this is _not_ needed for WPA-PSK)
  94. #CONFIG_EAP_PSK=y
  95. # EAP-pwd (secure authentication using only a password)
  96. #CONFIG_EAP_PWD=y
  97. # EAP-PAX
  98. #CONFIG_EAP_PAX=y
  99. # LEAP
  100. CONFIG_EAP_LEAP=y
  101. # EAP-AKA (enable CONFIG_PCSC, if EAP-AKA is used)
  102. #CONFIG_EAP_AKA=y
  103. # EAP-AKA' (enable CONFIG_PCSC, if EAP-AKA' is used).
  104. # This requires CONFIG_EAP_AKA to be enabled, too.
  105. #CONFIG_EAP_AKA_PRIME=y
  106. # Enable USIM simulator (Milenage) for EAP-AKA
  107. #CONFIG_USIM_SIMULATOR=y
  108. # EAP-SAKE
  109. #CONFIG_EAP_SAKE=y
  110. # EAP-GPSK
  111. #CONFIG_EAP_GPSK=y
  112. # Include support for optional SHA256 cipher suite in EAP-GPSK
  113. #CONFIG_EAP_GPSK_SHA256=y
  114. # EAP-TNC and related Trusted Network Connect support (experimental)
  115. #CONFIG_EAP_TNC=y
  116. # Wi-Fi Protected Setup (WPS)
  117. #CONFIG_WPS=y
  118. # Enable WPS external registrar functionality
  119. #CONFIG_WPS_ER=y
  120. # Disable credentials for an open network by default when acting as a WPS
  121. # registrar.
  122. #CONFIG_WPS_REG_DISABLE_OPEN=y
  123. # Enable WPS support with NFC config method
  124. #CONFIG_WPS_NFC=y
  125. # EAP-IKEv2
  126. #CONFIG_EAP_IKEV2=y
  127. # EAP-EKE
  128. #CONFIG_EAP_EKE=y
  129. # PKCS#12 (PFX) support (used to read private key and certificate file from
  130. # a file that usually has extension .p12 or .pfx)
  131. CONFIG_PKCS12=y
  132. # Smartcard support (i.e., private key on a smartcard), e.g., with openssl
  133. # engine.
  134. CONFIG_SMARTCARD=y
  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. # Support HT overrides (disable HT/HT40, mask MCS rates, etc.)
  139. #CONFIG_HT_OVERRIDES=y
  140. # Support VHT overrides (disable VHT, mask MCS rates, etc.)
  141. #CONFIG_VHT_OVERRIDES=y
  142. # Development testing
  143. #CONFIG_EAPOL_TEST=y
  144. # Select control interface backend for external programs, e.g, wpa_cli:
  145. # unix = UNIX domain sockets (default for Linux/*BSD)
  146. # udp = UDP sockets using localhost (127.0.0.1)
  147. # udp6 = UDP IPv6 sockets using localhost (::1)
  148. # named_pipe = Windows Named Pipe (default for Windows)
  149. # udp-remote = UDP sockets with remote access (only for tests systems/purpose)
  150. # udp6-remote = UDP IPv6 sockets with remote access (only for tests purpose)
  151. # y = use default (backwards compatibility)
  152. # If this option is commented out, control interface is not included in the
  153. # build.
  154. CONFIG_CTRL_IFACE=y
  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. # Include internal line edit mode in wpa_cli. This can be used as a replacement
  161. # for GNU Readline to provide limited command line editing and history support.
  162. #CONFIG_WPA_CLI_EDIT=y
  163. # Remove debugging code that is printing out debug message to stdout.
  164. # This can be used to reduce the size of the wpa_supplicant considerably
  165. # if debugging code is not needed. The size reduction can be around 35%
  166. # (e.g., 90 kB).
  167. #CONFIG_NO_STDOUT_DEBUG=y
  168. # Remove WPA support, e.g., for wired-only IEEE 802.1X supplicant, to save
  169. # 35-50 kB in code size.
  170. #CONFIG_NO_WPA=y
  171. # Remove IEEE 802.11i/WPA-Personal ASCII passphrase support
  172. # This option can be used to reduce code size by removing support for
  173. # converting ASCII passphrases into PSK. If this functionality is removed, the
  174. # PSK can only be configured as the 64-octet hexstring (e.g., from
  175. # wpa_passphrase). This saves about 0.5 kB in code size.
  176. #CONFIG_NO_WPA_PASSPHRASE=y
  177. # Disable scan result processing (ap_mode=1) to save code size by about 1 kB.
  178. # This can be used if ap_scan=1 mode is never enabled.
  179. #CONFIG_NO_SCAN_PROCESSING=y
  180. # Select configuration backend:
  181. # file = text file (e.g., wpa_supplicant.conf; note: the configuration file
  182. # path is given on command line, not here; this option is just used to
  183. # select the backend that allows configuration files to be used)
  184. # winreg = Windows registry (see win_example.reg for an example)
  185. CONFIG_BACKEND=file
  186. # Remove configuration write functionality (i.e., to allow the configuration
  187. # file to be updated based on runtime configuration changes). The runtime
  188. # configuration can still be changed, the changes are just not going to be
  189. # persistent over restarts. This option can be used to reduce code size by
  190. # about 3.5 kB.
  191. #CONFIG_NO_CONFIG_WRITE=y
  192. # Remove support for configuration blobs to reduce code size by about 1.5 kB.
  193. #CONFIG_NO_CONFIG_BLOBS=y
  194. # Select program entry point implementation:
  195. # main = UNIX/POSIX like main() function (default)
  196. # main_winsvc = Windows service (read parameters from registry)
  197. # main_none = Very basic example (development use only)
  198. #CONFIG_MAIN=main
  199. # Select wrapper for operating system and C library specific functions
  200. # unix = UNIX/POSIX like systems (default)
  201. # win32 = Windows systems
  202. # none = Empty template
  203. #CONFIG_OS=unix
  204. # Select event loop implementation
  205. # eloop = select() loop (default)
  206. # eloop_win = Windows events and WaitForMultipleObject() loop
  207. #CONFIG_ELOOP=eloop
  208. # Should we use poll instead of select? Select is used by default.
  209. #CONFIG_ELOOP_POLL=y
  210. # Should we use epoll instead of select? Select is used by default.
  211. #CONFIG_ELOOP_EPOLL=y
  212. # Should we use kqueue instead of select? Select is used by default.
  213. #CONFIG_ELOOP_KQUEUE=y
  214. # Select layer 2 packet implementation
  215. # linux = Linux packet socket (default)
  216. # pcap = libpcap/libdnet/WinPcap
  217. # freebsd = FreeBSD libpcap
  218. # winpcap = WinPcap with receive thread
  219. # ndis = Windows NDISUIO (note: requires CONFIG_USE_NDISUIO=y)
  220. # none = Empty template
  221. #CONFIG_L2_PACKET=linux
  222. # Disable Linux packet socket workaround applicable for station interface
  223. # in a bridge for EAPOL frames. This should be uncommented only if the kernel
  224. # is known to not have the regression issue in packet socket behavior with
  225. # bridge interfaces (commit 'bridge: respect RFC2863 operational state')').
  226. #CONFIG_NO_LINUX_PACKET_SOCKET_WAR=y
  227. # PeerKey handshake for Station to Station Link (IEEE 802.11e DLS)
  228. CONFIG_PEERKEY=y
  229. # IEEE 802.11w (management frame protection), also known as PMF
  230. # Driver support is also needed for IEEE 802.11w.
  231. #CONFIG_IEEE80211W=y
  232. # Select TLS implementation
  233. # openssl = OpenSSL (default)
  234. # gnutls = GnuTLS
  235. # internal = Internal TLSv1 implementation (experimental)
  236. # none = Empty template
  237. #CONFIG_TLS=openssl
  238. # TLS-based EAP methods require at least TLS v1.0. Newer version of TLS (v1.1)
  239. # can be enabled to get a stronger construction of messages when block ciphers
  240. # are used. It should be noted that some existing TLS v1.0 -based
  241. # implementation may not be compatible with TLS v1.1 message (ClientHello is
  242. # sent prior to negotiating which version will be used)
  243. #CONFIG_TLSV11=y
  244. # TLS-based EAP methods require at least TLS v1.0. Newer version of TLS (v1.2)
  245. # can be enabled to enable use of stronger crypto algorithms. It should be
  246. # noted that some existing TLS v1.0 -based implementation may not be compatible
  247. # with TLS v1.2 message (ClientHello is sent prior to negotiating which version
  248. # will be used)
  249. #CONFIG_TLSV12=y
  250. # If CONFIG_TLS=internal is used, additional library and include paths are
  251. # needed for LibTomMath. Alternatively, an integrated, minimal version of
  252. # LibTomMath can be used. See beginning of libtommath.c for details on benefits
  253. # and drawbacks of this option.
  254. #CONFIG_INTERNAL_LIBTOMMATH=y
  255. #ifndef CONFIG_INTERNAL_LIBTOMMATH
  256. #LTM_PATH=/usr/src/libtommath-0.39
  257. #CFLAGS += -I$(LTM_PATH)
  258. #LIBS += -L$(LTM_PATH)
  259. #LIBS_p += -L$(LTM_PATH)
  260. #endif
  261. # At the cost of about 4 kB of additional binary size, the internal LibTomMath
  262. # can be configured to include faster routines for exptmod, sqr, and div to
  263. # speed up DH and RSA calculation considerably
  264. #CONFIG_INTERNAL_LIBTOMMATH_FAST=y
  265. # Include NDIS event processing through WMI into wpa_supplicant/wpasvc.
  266. # This is only for Windows builds and requires WMI-related header files and
  267. # WbemUuid.Lib from Platform SDK even when building with MinGW.
  268. #CONFIG_NDIS_EVENTS_INTEGRATED=y
  269. #PLATFORMSDKLIB="/opt/Program Files/Microsoft Platform SDK/Lib"
  270. # Add support for old DBus control interface
  271. # (fi.epitest.hostap.WPASupplicant)
  272. #CONFIG_CTRL_IFACE_DBUS=y
  273. # Add support for new DBus control interface
  274. # (fi.w1.hostap.wpa_supplicant1)
  275. #CONFIG_CTRL_IFACE_DBUS_NEW=y
  276. # Add introspection support for new DBus control interface
  277. #CONFIG_CTRL_IFACE_DBUS_INTRO=y
  278. # Add support for loading EAP methods dynamically as shared libraries.
  279. # When this option is enabled, each EAP method can be either included
  280. # statically (CONFIG_EAP_<method>=y) or dynamically (CONFIG_EAP_<method>=dyn).
  281. # Dynamic EAP methods are build as shared objects (eap_*.so) and they need to
  282. # be loaded in the beginning of the wpa_supplicant configuration file
  283. # (see load_dynamic_eap parameter in the example file) before being used in
  284. # the network blocks.
  285. #
  286. # Note that some shared parts of EAP methods are included in the main program
  287. # and in order to be able to use dynamic EAP methods using these parts, the
  288. # main program must have been build with the EAP method enabled (=y or =dyn).
  289. # This means that EAP-TLS/PEAP/TTLS/FAST cannot be added as dynamic libraries
  290. # unless at least one of them was included in the main build to force inclusion
  291. # of the shared code. Similarly, at least one of EAP-SIM/AKA must be included
  292. # in the main build to be able to load these methods dynamically.
  293. #
  294. # Please also note that using dynamic libraries will increase the total binary
  295. # size. Thus, it may not be the best option for targets that have limited
  296. # amount of memory/flash.
  297. #CONFIG_DYNAMIC_EAP_METHODS=y
  298. # IEEE Std 802.11r-2008 (Fast BSS Transition)
  299. #CONFIG_IEEE80211R=y
  300. # Add support for writing debug log to a file (/tmp/wpa_supplicant-log-#.txt)
  301. #CONFIG_DEBUG_FILE=y
  302. # Send debug messages to syslog instead of stdout
  303. #CONFIG_DEBUG_SYSLOG=y
  304. # Set syslog facility for debug messages
  305. #CONFIG_DEBUG_SYSLOG_FACILITY=LOG_DAEMON
  306. # Add support for sending all debug messages (regardless of debug verbosity)
  307. # to the Linux kernel tracing facility. This helps debug the entire stack by
  308. # making it easy to record everything happening from the driver up into the
  309. # same file, e.g., using trace-cmd.
  310. #CONFIG_DEBUG_LINUX_TRACING=y
  311. # Add support for writing debug log to Android logcat instead of standard
  312. # output
  313. #CONFIG_ANDROID_LOG=y
  314. # Enable privilege separation (see README 'Privilege separation' for details)
  315. #CONFIG_PRIVSEP=y
  316. # Enable mitigation against certain attacks against TKIP by delaying Michael
  317. # MIC error reports by a random amount of time between 0 and 60 seconds
  318. #CONFIG_DELAYED_MIC_ERROR_REPORT=y
  319. # Enable tracing code for developer debugging
  320. # This tracks use of memory allocations and other registrations and reports
  321. # incorrect use with a backtrace of call (or allocation) location.
  322. #CONFIG_WPA_TRACE=y
  323. # For BSD, uncomment these.
  324. #LIBS += -lexecinfo
  325. #LIBS_p += -lexecinfo
  326. #LIBS_c += -lexecinfo
  327. # Use libbfd to get more details for developer debugging
  328. # This enables use of libbfd to get more detailed symbols for the backtraces
  329. # generated by CONFIG_WPA_TRACE=y.
  330. #CONFIG_WPA_TRACE_BFD=y
  331. # For BSD, uncomment these.
  332. #LIBS += -lbfd -liberty -lz
  333. #LIBS_p += -lbfd -liberty -lz
  334. #LIBS_c += -lbfd -liberty -lz
  335. # wpa_supplicant depends on strong random number generation being available
  336. # from the operating system. os_get_random() function is used to fetch random
  337. # data when needed, e.g., for key generation. On Linux and BSD systems, this
  338. # works by reading /dev/urandom. It should be noted that the OS entropy pool
  339. # needs to be properly initialized before wpa_supplicant is started. This is
  340. # important especially on embedded devices that do not have a hardware random
  341. # number generator and may by default start up with minimal entropy available
  342. # for random number generation.
  343. #
  344. # As a safety net, wpa_supplicant is by default trying to internally collect
  345. # additional entropy for generating random data to mix in with the data fetched
  346. # from the OS. This by itself is not considered to be very strong, but it may
  347. # help in cases where the system pool is not initialized properly. However, it
  348. # is very strongly recommended that the system pool is initialized with enough
  349. # entropy either by using hardware assisted random number generator or by
  350. # storing state over device reboots.
  351. #
  352. # wpa_supplicant can be configured to maintain its own entropy store over
  353. # restarts to enhance random number generation. This is not perfect, but it is
  354. # much more secure than using the same sequence of random numbers after every
  355. # reboot. This can be enabled with -e<entropy file> command line option. The
  356. # specified file needs to be readable and writable by wpa_supplicant.
  357. #
  358. # If the os_get_random() is known to provide strong random data (e.g., on
  359. # Linux/BSD, the board in question is known to have reliable source of random
  360. # data from /dev/urandom), the internal wpa_supplicant random pool can be
  361. # disabled. This will save some in binary size and CPU use. However, this
  362. # should only be considered for builds that are known to be used on devices
  363. # that meet the requirements described above.
  364. #CONFIG_NO_RANDOM_POOL=y
  365. # IEEE 802.11n (High Throughput) support (mainly for AP mode)
  366. #CONFIG_IEEE80211N=y
  367. # IEEE 802.11ac (Very High Throughput) support (mainly for AP mode)
  368. # (depends on CONFIG_IEEE80211N)
  369. #CONFIG_IEEE80211AC=y
  370. # Wireless Network Management (IEEE Std 802.11v-2011)
  371. # Note: This is experimental and not complete implementation.
  372. #CONFIG_WNM=y
  373. # Interworking (IEEE 802.11u)
  374. # This can be used to enable functionality to improve interworking with
  375. # external networks (GAS/ANQP to learn more about the networks and network
  376. # selection based on available credentials).
  377. #CONFIG_INTERWORKING=y
  378. # Hotspot 2.0
  379. #CONFIG_HS20=y
  380. # Enable interface matching in wpa_supplicant
  381. #CONFIG_MATCH_IFACE=y
  382. # Disable roaming in wpa_supplicant
  383. #CONFIG_NO_ROAMING=y
  384. # AP mode operations with wpa_supplicant
  385. # This can be used for controlling AP mode operations with wpa_supplicant. It
  386. # should be noted that this is mainly aimed at simple cases like
  387. # WPA2-Personal while more complex configurations like WPA2-Enterprise with an
  388. # external RADIUS server can be supported with hostapd.
  389. #CONFIG_AP=y
  390. # P2P (Wi-Fi Direct)
  391. # This can be used to enable P2P support in wpa_supplicant. See README-P2P for
  392. # more information on P2P operations.
  393. #CONFIG_P2P=y
  394. # Enable TDLS support
  395. #CONFIG_TDLS=y
  396. # Wi-Fi Direct
  397. # This can be used to enable Wi-Fi Direct extensions for P2P using an external
  398. # program to control the additional information exchanges in the messages.
  399. #CONFIG_WIFI_DISPLAY=y
  400. # Autoscan
  401. # This can be used to enable automatic scan support in wpa_supplicant.
  402. # See wpa_supplicant.conf for more information on autoscan usage.
  403. #
  404. # Enabling directly a module will enable autoscan support.
  405. # For exponential module:
  406. #CONFIG_AUTOSCAN_EXPONENTIAL=y
  407. # For periodic module:
  408. #CONFIG_AUTOSCAN_PERIODIC=y
  409. # Password (and passphrase, etc.) backend for external storage
  410. # These optional mechanisms can be used to add support for storing passwords
  411. # and other secrets in external (to wpa_supplicant) location. This allows, for
  412. # example, operating system specific key storage to be used
  413. #
  414. # External password backend for testing purposes (developer use)
  415. #CONFIG_EXT_PASSWORD_TEST=y
  416. # Enable Fast Session Transfer (FST)
  417. #CONFIG_FST=y
  418. # Enable CLI commands for FST testing
  419. #CONFIG_FST_TEST=y
  420. # OS X builds. This is only for building eapol_test.
  421. #CONFIG_OSX=y
  422. # Automatic Channel Selection
  423. # This will allow wpa_supplicant to pick the channel automatically when channel
  424. # is set to "0".
  425. #
  426. # TODO: Extend parser to be able to parse "channel=acs_survey" as an alternative
  427. # to "channel=0". This would enable us to eventually add other ACS algorithms in
  428. # similar way.
  429. #
  430. # Automatic selection is currently only done through initialization, later on
  431. # we hope to do background checks to keep us moving to more ideal channels as
  432. # time goes by. ACS is currently only supported through the nl80211 driver and
  433. # your driver must have survey dump capability that is filled by the driver
  434. # during scanning.
  435. #
  436. # TODO: In analogy to hostapd be able to customize the ACS survey algorithm with
  437. # a newly to create wpa_supplicant.conf variable acs_num_scans.
  438. #
  439. # Supported ACS drivers:
  440. # * ath9k
  441. # * ath5k
  442. # * ath10k
  443. #
  444. # For more details refer to:
  445. # http://wireless.kernel.org/en/users/Documentation/acs
  446. #CONFIG_ACS=y
  447. # Support Multi Band Operation
  448. #CONFIG_MBO=y