summaryrefslogtreecommitdiffstats
path: root/rules/wpa_supplicant.in
blob: a5d42faa1d01ac363d4bb2c1dbc75bb8c08af833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
## SECTION=networking

menuconfig WPA_SUPPLICANT
	tristate
	prompt "wpa_supplicant                "
	select OPENSSL
	select LIBNL3
	select DBUS if WPA_SUPPLICANT_CTRL_IFACE_DBUS
	help
	  IEEE 802.1X/WPA supplicant for secure wireless transfers

if WPA_SUPPLICANT

config WPA_SUPPLICANT_CTRL_IFACE_DBUS
	bool
	prompt "dbus control interface"
	help
	  Add support for (old and new) DBus control interface

config WPA_SUPPLICANT_PASSPHRASE
	bool
	prompt "installl wpa_passphrase"
	help
	  Install wpa_passphrase tool (Generate a WPA PSK from an ASCII
	  passphrase for a SSID)

config WPA_SUPPLICANT_INSTALL_CLI
	bool
	prompt "Install wpa_cli"
	help
	  This option enables or disables installation of the wpa_cli tool in
	  the root file system. The tool allows controlling wpa_supplicant
	  if used in daemon mode.

	  You need something like

	      ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=network
	      update_config=1

	  in your /etc/wpa_supplicant.conf to make wpa_cli working. Often
	  it's not necessary to have wpa_cli in the final (non-development)
	  version of an Embedded System.

endif