diff options
author | John Crispin <john@openwrt.org> | 2015-03-13 08:38:25 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-03-13 08:38:25 +0000 |
commit | 31b8de458787a3e935f4181363092543be6b99f6 (patch) | |
tree | be3af3edef0ffeae737338b8e1dd13484c53a48a /package/network/services/lldpd/Config.in | |
parent | d8e61b088f5cdfafdd2301b04bc3c4e4b3ebc9e4 (diff) | |
download | mtk-20170518-31b8de458787a3e935f4181363092543be6b99f6.zip mtk-20170518-31b8de458787a3e935f4181363092543be6b99f6.tar.gz mtk-20170518-31b8de458787a3e935f4181363092543be6b99f6.tar.bz2 |
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
Diffstat (limited to 'package/network/services/lldpd/Config.in')
-rw-r--r-- | package/network/services/lldpd/Config.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/network/services/lldpd/Config.in b/package/network/services/lldpd/Config.in index c7d4795..a416490 100644 --- a/package/network/services/lldpd/Config.in +++ b/package/network/services/lldpd/Config.in @@ -21,8 +21,24 @@ config LLDPD_WITH_SONMP default y 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 bool prompt "Enable JSON output for the LLDP Command-Line Interface" default n + endmenu |