]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/network-manager/Config.in
package/network-manager: add patches to build with kernel headers 3.2
[coffee/buildroot.git] / package / network-manager / Config.in
1 config BR2_PACKAGE_NETWORK_MANAGER
2         bool "networkmanager"
3         depends on BR2_USE_MMU # dbus
4         depends on BR2_PACKAGE_HAS_UDEV
5         # Tested with 3.2, but may even work with earlier versions
6         depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
7         depends on BR2_TOOLCHAIN_USES_GLIBC # CLOCK_BOOTTIME, IPTOS_CLASS_*
8         select BR2_PACKAGE_DHCPCD if !BR2_PACKAGE_DHCP_CLIENT
9         select BR2_PACKAGE_DBUS
10         select BR2_PACKAGE_DBUS_GLIB
11         select BR2_PACKAGE_GNUTLS
12         select BR2_PACKAGE_LIBGCRYPT
13         select BR2_PACKAGE_LIBNL
14         select BR2_PACKAGE_UTIL_LINUX
15         select BR2_PACKAGE_UTIL_LINUX_LIBUUID
16         select BR2_PACKAGE_WIRELESS_TOOLS
17         select BR2_PACKAGE_WIRELESS_TOOLS_LIB
18         select BR2_PACKAGE_READLINE
19         select BR2_PACKAGE_LIBNDP
20         help
21           NetworkManager is a set of co-operative tools that make networking
22           simple and straightforward. Whether WiFi, wired, 3G, or Bluetooth,
23           NetworkManager allows you to quickly move from one network to
24           another: once a network has been configured and joined once, it
25           can be detected and re-joined automatically the next time it's
26           available.
27
28           http://projects.gnome.org/NetworkManager/
29
30 if BR2_PACKAGE_NETWORK_MANAGER
31
32 config BR2_PACKAGE_NETWORK_MANAGER_TUI
33         bool "nmtui support"
34         select BR2_PACKAGE_NEWT
35         help
36           This option enables terminal based UI
37
38 config BR2_PACKAGE_NETWORK_MANAGER_MODEM_MANAGER
39         bool "modem-manager support"
40         select BR2_PACKAGE_MODEM_MANAGER
41         select BR2_PACKAGE_MODEM_MANAGER_LIBMBIM
42         select BR2_PACKAGE_MODEM_MANAGER_LIBQMI
43         help
44           This option enables support for ModemManager
45
46 config BR2_PACKAGE_NETWORK_MANAGER_PPPD
47         bool "pppd support"
48         select BR2_PACKAGE_PPPD
49         help
50           This option enables support for PPPD daemon
51 endif
52
53 comment "NetworkManager needs udev /dev management and a (e)glibc toolchain w/ headers >= 3.7"
54         depends on BR2_USE_MMU
55         depends on !BR2_PACKAGE_HAS_UDEV || \
56                 !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7 || \
57                 !BR2_TOOLCHAIN_USES_GLIBC