Commit 42389cbc authored by Yegor Yefremov's avatar Yegor Yefremov Committed by Peter Korsgaard
Browse files

network-manager: add support for pppd

parent e6380261
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -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
+7 −1
Original line number Diff line number Diff line
@@ -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