aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/lldpd/Config.in
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2014-11-11 09:49:20 +0000
committerJo-Philipp Wich <jow@openwrt.org>2014-11-11 09:49:20 +0000
commit6966aa0d50fb96dbcdf8d574b2a91dd9f09742a4 (patch)
tree89b85882483b7e0afc2f77574eb57fc24110ea5a /package/network/services/lldpd/Config.in
parentda53ac677f479177455f77843f138d09225d46ec (diff)
downloadupstream-6966aa0d50fb96dbcdf8d574b2a91dd9f09742a4.tar.gz
upstream-6966aa0d50fb96dbcdf8d574b2a91dd9f09742a4.tar.bz2
upstream-6966aa0d50fb96dbcdf8d574b2a91dd9f09742a4.zip
lldpd: allow discovery protocols to be disabled from menuconfig
Signed-off-by: Michel Stam <m.stam@fugro.nl> [jow: fixed condition for CONFIG_LLDPD_WITH_JSON] Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 43233
Diffstat (limited to 'package/network/services/lldpd/Config.in')
-rw-r--r--package/network/services/lldpd/Config.in28
1 files changed, 28 insertions, 0 deletions
diff --git a/package/network/services/lldpd/Config.in b/package/network/services/lldpd/Config.in
new file mode 100644
index 0000000000..c7d47953af
--- /dev/null
+++ b/package/network/services/lldpd/Config.in
@@ -0,0 +1,28 @@
+menu "Configuration"
+ depends on PACKAGE_lldpd
+
+config LLDPD_WITH_CDP
+ bool
+ default y
+ prompt "Enable support for the Cisco Discovery Protocol (CDP) version 1 and 2"
+
+config LLDPD_WITH_FDP
+ bool
+ default y
+ prompt "Enable support for the Foundry Discovery Protocol (FDP)"
+
+config LLDPD_WITH_EDP
+ bool
+ default y
+ prompt "Enable support for the Extreme Discovery Protocol (EDP)"
+
+config LLDPD_WITH_SONMP
+ bool
+ default y
+ prompt "Enable support for the SynOptics Network Management Protocol"
+
+config LLDPD_WITH_JSON
+ bool
+ prompt "Enable JSON output for the LLDP Command-Line Interface"
+ default n
+endmenu