lldpd: make LLDP-MED, DOT1 and DOT3 extensions disable-able
The names for the config options were taken from lldpd's configure.ac file. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com> SVN-Revision: 44743
This commit is contained in:
parent
d8e61b088f
commit
31b8de4587
@ -21,8 +21,24 @@ config LLDPD_WITH_SONMP
|
|||||||
default y
|
default y
|
||||||
prompt "Enable support for the SynOptics Network Management Protocol"
|
prompt "Enable support for the SynOptics Network Management Protocol"
|
||||||
|
|
||||||
|
config LLDPD_WITH_LLDPMED
|
||||||
|
bool
|
||||||
|
prompt "Enable LLDP-MED extension"
|
||||||
|
default y
|
||||||
|
|
||||||
|
config LLDPD_WITH_DOT1
|
||||||
|
bool
|
||||||
|
prompt "Enable Dot1 extension (VLAN stuff)"
|
||||||
|
default y
|
||||||
|
|
||||||
|
config LLDPD_WITH_DOT3
|
||||||
|
bool
|
||||||
|
prompt "Enable Dot3 extension (PHY stuff)"
|
||||||
|
default y
|
||||||
|
|
||||||
config LLDPD_WITH_JSON
|
config LLDPD_WITH_JSON
|
||||||
bool
|
bool
|
||||||
prompt "Enable JSON output for the LLDP Command-Line Interface"
|
prompt "Enable JSON output for the LLDP Command-Line Interface"
|
||||||
default n
|
default n
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
@ -85,6 +85,9 @@ CONFIGURE_ARGS += \
|
|||||||
$(if $(CONFIG_LLDPD_WITH_CDP),,--disable-cdp) \
|
$(if $(CONFIG_LLDPD_WITH_CDP),,--disable-cdp) \
|
||||||
$(if $(CONFIG_LLDPD_WITH_FDP),,--disable-fdp) \
|
$(if $(CONFIG_LLDPD_WITH_FDP),,--disable-fdp) \
|
||||||
$(if $(CONFIG_LLDPD_WITH_EDP),,--disable-edp) \
|
$(if $(CONFIG_LLDPD_WITH_EDP),,--disable-edp) \
|
||||||
|
$(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_SONMP),,--disable-sonmp) \
|
$(if $(CONFIG_LLDPD_WITH_SONMP),,--disable-sonmp) \
|
||||||
$(if $(CONFIG_LLDPD_WITH_JSON),--with-json=json-c)
|
$(if $(CONFIG_LLDPD_WITH_JSON),--with-json=json-c)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user