2f89476ad9
This patch is based on a patch sent by Vicente Olivert Riera and commented by Arnout Vandecappelle [1]. - Bump version to 1.23 - Add a hook to fix cross-compilation - Fix license and license files - Remove patch applied upstream - Add a BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS variable - Propagate the dependencies using that variable: * package/cppcms * package/crda * package/gnupg2 - package/gcr - package/midori * package/kodi * package/libaacs * package/libassuan * package/libgcrypt * package/libgpgme * package/libksba * package/libmicrohttpd - package/janus-gateway - package/kodi - package/ola - package/systemd * package/libssh * package/libssh2 - package/php-ssh2 * package/netatalk * package/network-manager * package/ntfs-3g * package/opkg * package/php-gnupg * package/rng-tools * package/strongswan * package/vpnc [1] http://patchwork.ozlabs.org/patch/416427/ Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> [Thomas: - rebase on master - changing systemd no longer needed, as it no longer selects libgcrypt.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> [Maxime: - rebase on master - bump to new version - propagate dependencies to missing packages] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Reviewed-by: Romain Naour <romain.naour@gmail.com> [Thomas: - fix hash file. - change the way to handle the various arch so that it works properly for uClibc. - add nios2 arch support. - Maxime Hadjinlian learned some basic Emacs-fu to do the final fixups of this commit.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
60 lines
1.9 KiB
Plaintext
60 lines
1.9 KiB
Plaintext
config BR2_PACKAGE_NETWORK_MANAGER
|
|
bool "networkmanager"
|
|
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgcrypt
|
|
depends on BR2_USE_MMU # dbus
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
|
# Tested with 3.2, but may even work with earlier versions
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC # CLOCK_BOOTTIME, IPTOS_CLASS_*
|
|
select BR2_PACKAGE_DHCPCD if !BR2_PACKAGE_DHCP_CLIENT
|
|
select BR2_PACKAGE_DBUS
|
|
select BR2_PACKAGE_DBUS_GLIB
|
|
select BR2_PACKAGE_GNUTLS
|
|
select BR2_PACKAGE_LIBGCRYPT
|
|
select BR2_PACKAGE_LIBNL
|
|
select BR2_PACKAGE_LIBGUDEV
|
|
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
|
|
select BR2_PACKAGE_MODEM_MANAGER_LIBMBIM
|
|
select BR2_PACKAGE_MODEM_MANAGER_LIBQMI
|
|
help
|
|
This option enables support for ModemManager
|
|
|
|
config BR2_PACKAGE_NETWORK_MANAGER_PPPD
|
|
bool "pppd support"
|
|
select BR2_PACKAGE_PPPD
|
|
help
|
|
This option enables support for PPPD daemon
|
|
endif
|
|
|
|
comment "NetworkManager needs udev /dev management and a glibc toolchain w/ headers >= 3.7"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_PACKAGE_HAS_UDEV || \
|
|
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7 || \
|
|
!BR2_TOOLCHAIN_USES_GLIBC
|