summaryrefslogtreecommitdiffstats
path: root/rules/networkmanager.in
blob: dbe7068ccf234acca4a09cab8eedfe6bf0fbd8c2 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
## SECTION=networking

menuconfig NETWORKMANAGER
	tristate
	# intltool is unconditionally requested by configure
	select HOST_INTLTOOL
	select LIBC_M
	select LIBC_DL
	select LIBC_PTHREAD
	select LIBC_RT
	select LIBNEWT			if NETWORKMANAGER_NMTUI
	select DBUS
	select READLINE			if NETWORKMANAGER_NMCLI
	select LIBUUID
	select GLIB
	select GNUTLS
	select LIBNL3
	select LIBNDP
	select UDEV			if RUNTIME
	select LIBGUDEV
	select MODEMMANAGER		if NETWORKMANAGER_WWAN
	select PPP			if NETWORKMANAGER_PPP
	select PPP_PLUGINS		if NETWORKMANAGER_PPP
	select WPA_SUPPLICANT		if NETWORKMANAGER_WIRELESS && RUNTIME
	select WPA_SUPPLICANT_CTRL_IFACE_DBUS if NETWORKMANAGER_WIRELESS && RUNTIME
	select DBUS_PYTHON		if NETWORKMANAGER_EXAMPLES && RUNTIME
	select SYSTEMD			if NETWORKMANAGER_SYSTEMD_UNIT
	prompt "networkmanager                "
	help
	  NetworkManager is a tool to automate network configuration as far as
	  possible. The project web site is here:

	  http://projects.gnome.org/NetworkManager/

if NETWORKMANAGER

config NETWORKMANAGER_STARTSCRIPT
	depends on !INITMETHOD_SYSTEMD
	bool
	default y
	prompt "install /etc/init.d/NetworkManager"

config NETWORKMANAGER_NM_ONLINE
	bool
	prompt "install nm-online"
	help
	  Install the 'nm-online' tool to detect online state.

config NETWORKMANAGER_NMTUI
	bool
	prompt "install nmtui"
	help
	  Build and install the 'nmtui' tool.

config NETWORKMANAGER_SYSTEMD_UNIT
	bool
	default y
	depends on INITMETHOD_SYSTEMD
	prompt "install systemd unit files for Network Manager"

config NETWORKMANAGER_WIRELESS
	bool
	prompt "enable wireless support"

config NETWORKMANAGER_NMCLI
	bool
	default y
	prompt "install nmcli"
	help
	  Build and install the 'nmcli' tool.

config NETWORKMANAGER_WWAN
	bool
	prompt "enable WWAN support"
	help
	  Enable ModemManager interface support, wwan and bluetooth
	  plugins depend on it.

config NETWORKMANAGER_PPP
	bool
	prompt "enable ppp support"

config NETWORKMANAGER_EXAMPLES
	bool
	prompt "install examples for Network Manager"

endif