lldpd: add option to disable custom TLVs

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45884 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
John Crispin
2015-06-03 13:59:14 +00:00
parent b224fbdca6
commit 722c9b412e
2 changed files with 6 additions and 0 deletions

View File

@@ -41,6 +41,11 @@ config LLDPD_WITH_DOT3
prompt "Enable Dot3 extension (PHY stuff)"
default y
config LLDPD_WITH_CUSTOM
bool
prompt "Enable Custom TLVs"
default y
config LLDPD_WITH_JSON
bool
prompt "Enable JSON output for the LLDP Command-Line Interface"

View File

@@ -100,6 +100,7 @@ CONFIGURE_ARGS += \
$(if $(CONFIG_LLDPD_WITH_LLDPMED),,--disable-lldpmed) \
$(if $(CONFIG_LLDPD_WITH_DOT1),,--disable-dot1) \
$(if $(CONFIG_LLDPD_WITH_DOT3),,--disable-dot3) \
$(if $(CONFIG_LLDPD_WITH_CUSTOM),,--disable-custom) \
$(if $(CONFIG_LLDPD_WITH_SONMP),,--disable-sonmp) \
$(if $(CONFIG_LLDPD_WITH_JSON),--with-json=json-c,--with-json=no)