mirror of https://github.com/hak5/openwrt-owl.git
lldpd: add option to disable custom TLVs
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com> SVN-Revision: 45884owl
parent
5fe5aeaa72
commit
281cb95a9d
|
@ -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"
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue