hc
2024-03-22 619f0f87159c5dbd2755b1b0a0eb35784be84e7a
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
config BR2_PACKAGE_NETWORK_MANAGER
   bool "network-manager"
   depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgcrypt
   depends on !BR2_STATIC_LIBS # gnutls
   depends on BR2_USE_MMU # dbus
   depends on BR2_PACKAGE_HAS_UDEV
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
   # Tested with 3.2, but may even work with earlier versions
   depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_6
   depends on BR2_TOOLCHAIN_USES_GLIBC # CLOCK_BOOTTIME, IPTOS_CLASS_*
   depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
   depends on BR2_USE_WCHAR # libglib2
   select BR2_PACKAGE_DBUS
   select BR2_PACKAGE_GNUTLS
   select BR2_PACKAGE_LIBGLIB2
   select BR2_PACKAGE_LIBGCRYPT
   select BR2_PACKAGE_UTIL_LINUX
   select BR2_PACKAGE_UTIL_LINUX_LIBUUID
   select BR2_PACKAGE_WIRELESS_TOOLS
   select BR2_PACKAGE_WIRELESS_TOOLS_LIB
   select BR2_PACKAGE_READLINE
   select BR2_PACKAGE_LIBNDP
   help
     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.
 
     http://projects.gnome.org/NetworkManager/
 
if BR2_PACKAGE_NETWORK_MANAGER
 
config BR2_PACKAGE_NETWORK_MANAGER_TUI
   bool "nmtui support"
   select BR2_PACKAGE_NEWT
   help
     This option enables terminal based UI
 
config BR2_PACKAGE_NETWORK_MANAGER_MODEM_MANAGER
   bool "modem-manager support"
   select BR2_PACKAGE_MODEM_MANAGER
   help
     This option enables support for ModemManager
 
config BR2_PACKAGE_NETWORK_MANAGER_PPPD
   bool "pppd support"
   depends on !BR2_TOOLCHAIN_USES_MUSL # pppd
   select BR2_PACKAGE_PPPD
   help
     This option enables support for PPPD daemon
 
comment "pppd support needs a glibc or uClibc toolchain"
   depends on BR2_TOOLCHAIN_USES_MUSL
 
config BR2_PACKAGE_NETWORK_MANAGER_OVS
   bool "OpenVSwitch support"
   select BR2_PACKAGE_JANSSON
   help
     This option enables support for OpenVSwitch
 
endif
 
comment "NetworkManager needs udev /dev management and a glibc toolchain w/ headers >= 4.6, dynamic library, wchar, threads, gcc >= 4.9"
   depends on BR2_USE_MMU
   depends on !BR2_PACKAGE_HAS_UDEV || \
       !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_6 || \
       !BR2_TOOLCHAIN_USES_GLIBC || BR2_STATIC_LIBS || \
       !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
       !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9