network-manager: add support for pppd

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Yegor Yefremov 2014-03-14 11:26:33 +01:00 committed by Peter Korsgaard
parent e63802618d
commit 42389cbcae
2 changed files with 16 additions and 1 deletions

View File

@ -26,6 +26,15 @@ config BR2_PACKAGE_NETWORK_MANAGER
http://projects.gnome.org/NetworkManager/
if BR2_PACKAGE_NETWORK_MANAGER
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 toolchain w/ IPv6, largefile, wchar, threads"
depends on !BR2_avr32
depends on BR2_USE_MMU

View File

@ -29,11 +29,17 @@ NETWORK_MANAGER_CONF_OPT = \
--disable-gtk-doc \
--localstatedir=/var \
--with-crypto=gnutls \
--disable-ppp \
--with-iptables=/usr/sbin/iptables \
--disable-ifupdown \
--disable-ifnet
ifeq ($(BR2_PACKAGE_NETWORK_MANAGER_PPPD),y)
NETWORK_MANAGER_DEPENDENCIES += pppd
NETWORK_MANAGER_CONF_OPT += --enable-ppp
else
NETWORK_MANAGER_CONF_OPT += --disable-ppp
endif
ifeq ($(BR2_PACKAGE_DHCP_CLIENT),y)
NETWORK_MANAGER_CONF_OPT += --with-dhclient=/usr/sbin/dhclient
endif