Commit 92e8d431 authored by Matt Weber's avatar Matt Weber Committed by Thomas Petazzoni
Browse files

quagga: option for vtysh



[Thomas: add corresponding explicit --disable option.]

Signed-off-by: default avatarMatthew Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent c99144b3
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -82,6 +82,12 @@ config BR2_PACKAGE_QUAGGA_WATCHQUAGGA
	help
	  Build and install watchquagga, a zebra/protocol daemon supervisor.

config BR2_PACKAGE_QUAGGA_VTYSH
	bool "Build vtysh"
	select BR2_PACKAGE_READLINE
	help
	  Build and install vtysh, a vty shell for Quagga.

config BR2_PACKAGE_QUAGGA_SNMP
	bool "SNMP support"
	depends on BR2_USE_MMU # net-snmp
+7 −0
Original line number Diff line number Diff line
@@ -32,4 +32,11 @@ QUAGGA_CONF_OPTS += --enable-snmp=agentx
QUAGGA_DEPENDENCIES += netsnmp
endif

ifeq ($(BR2_PACKAGE_QUAGGA_VTYSH),y)
QUAGGA_CONF_OPTS += --enable-vtysh
QUAGGA_DEPENDENCIES += readline
else
QUAGGA_CONF_OPTS += --disable-vtysh
endif

$(eval $(autotools-package))