2011-12-02 13:13:09 +01:00
|
|
|
config BR2_PACKAGE_NETWORK_MANAGER
|
2018-06-15 23:21:25 +02:00
|
|
|
bool "network-manager"
|
2016-07-04 01:48:34 +02:00
|
|
|
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgcrypt
|
2017-05-25 18:34:43 +02:00
|
|
|
depends on !BR2_STATIC_LIBS # gnutls
|
2012-11-17 13:24:08 +01:00
|
|
|
depends on BR2_USE_MMU # dbus
|
2014-02-07 14:21:33 +01:00
|
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
2015-06-22 12:43:50 +02:00
|
|
|
# Tested with 3.2, but may even work with earlier versions
|
|
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
|
2015-05-02 10:04:44 +02:00
|
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC # CLOCK_BOOTTIME, IPTOS_CLASS_*
|
2014-11-26 11:50:55 +01:00
|
|
|
select BR2_PACKAGE_DHCPCD if !BR2_PACKAGE_DHCP_CLIENT
|
2014-02-07 14:21:33 +01:00
|
|
|
select BR2_PACKAGE_DBUS
|
2011-12-02 13:13:09 +01:00
|
|
|
select BR2_PACKAGE_DBUS_GLIB
|
|
|
|
select BR2_PACKAGE_GNUTLS
|
2012-12-28 10:47:22 +01:00
|
|
|
select BR2_PACKAGE_LIBGCRYPT
|
2011-12-02 13:13:09 +01:00
|
|
|
select BR2_PACKAGE_LIBNL
|
2015-12-02 12:27:06 +01:00
|
|
|
select BR2_PACKAGE_LIBGUDEV
|
2011-12-02 13:13:09 +01:00
|
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
|
|
select BR2_PACKAGE_WIRELESS_TOOLS
|
|
|
|
select BR2_PACKAGE_WIRELESS_TOOLS_LIB
|
2014-06-13 10:31:29 +02:00
|
|
|
select BR2_PACKAGE_READLINE
|
|
|
|
select BR2_PACKAGE_LIBNDP
|
2011-12-02 13:13:09 +01:00
|
|
|
help
|
2017-12-18 09:21:05 +01:00
|
|
|
NetworkManager is a set of co-operative tools that make
|
|
|
|
networking simple and straightforward. Whether WiFi, wired,
|
|
|
|
3G, or Bluetooth, NetworkManager allows you to quickly move
|
|
|
|
from one network to another: once a network has been
|
|
|
|
configured and joined once, it can be detected and re-joined
|
|
|
|
automatically the next time it's available.
|
2011-12-02 13:13:09 +01:00
|
|
|
|
|
|
|
http://projects.gnome.org/NetworkManager/
|
|
|
|
|
2014-03-14 11:26:33 +01:00
|
|
|
if BR2_PACKAGE_NETWORK_MANAGER
|
|
|
|
|
2014-06-13 10:31:30 +02:00
|
|
|
config BR2_PACKAGE_NETWORK_MANAGER_TUI
|
|
|
|
bool "nmtui support"
|
|
|
|
select BR2_PACKAGE_NEWT
|
|
|
|
help
|
|
|
|
This option enables terminal based UI
|
|
|
|
|
2014-03-14 11:26:34 +01:00
|
|
|
config BR2_PACKAGE_NETWORK_MANAGER_MODEM_MANAGER
|
|
|
|
bool "modem-manager support"
|
|
|
|
select BR2_PACKAGE_MODEM_MANAGER
|
|
|
|
select BR2_PACKAGE_MODEM_MANAGER_LIBMBIM
|
|
|
|
select BR2_PACKAGE_MODEM_MANAGER_LIBQMI
|
|
|
|
help
|
|
|
|
This option enables support for ModemManager
|
|
|
|
|
2014-03-14 11:26:33 +01:00
|
|
|
config BR2_PACKAGE_NETWORK_MANAGER_PPPD
|
|
|
|
bool "pppd support"
|
2016-07-16 18:08:18 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_USES_MUSL # pppd
|
2014-03-14 11:26:33 +01:00
|
|
|
select BR2_PACKAGE_PPPD
|
|
|
|
help
|
|
|
|
This option enables support for PPPD daemon
|
2016-07-16 18:08:18 +02:00
|
|
|
|
|
|
|
comment "pppd support needs a glibc or uClibc toolchain"
|
|
|
|
depends on BR2_TOOLCHAIN_USES_MUSL
|
|
|
|
|
2018-02-02 00:45:16 +01:00
|
|
|
config BR2_PACKAGE_NETWORK_MANAGER_OVS
|
|
|
|
bool "OpenVSwitch support"
|
|
|
|
select BR2_PACKAGE_JANSSON
|
|
|
|
help
|
|
|
|
This option enables support for OpenVSwitch
|
|
|
|
|
2014-03-14 11:26:33 +01:00
|
|
|
endif
|
|
|
|
|
2018-07-01 00:19:15 +02:00
|
|
|
comment "NetworkManager needs udev /dev management and a glibc toolchain w/ headers >= 3.2, dynamic library"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_USE_MMU
|
2015-05-02 10:38:38 +02:00
|
|
|
depends on !BR2_PACKAGE_HAS_UDEV || \
|
2018-07-01 00:19:15 +02:00
|
|
|
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2 || \
|
2017-05-25 18:34:43 +02:00
|
|
|
!BR2_TOOLCHAIN_USES_GLIBC || BR2_STATIC_LIBS
|