board/csky: fixup gdb instructions in readme.txt
[buildroot-gz.git] / package / lldpd / Config.in
blob9a9517b5b0f0a5460511035fd9ff7fbc7b19ea96
1 config BR2_PACKAGE_LLDPD
2         bool "lldpd"
3         depends on BR2_USE_MMU # fork()
4         select BR2_PACKAGE_LIBEVENT
5         help
6           lldpd is a 802.1ab implementation (LLDP) to help you locate
7           neighbors of all your equipments.
9           LLDP allows you to know exactly on which port is a server
10           (and reciprocally).
12           LLDP is an industry standard protocol designed to supplant
13           proprietary Link-Layer protocols such as EDP or CDP. The
14           goal of LLDP is to provide an inter-vendor compatible
15           mechanism to deliver Link-Layer notifications to adjacent
16           network devices.
18           lldpd is an ISC-licensed implementation of LLDP for various
19           Unixes. It also supports some proprietary protocols.
21           https://vincentbernat.github.io/lldpd/
23 if BR2_PACKAGE_LLDPD
25 config BR2_PACKAGE_LLDPD_CDP
26         bool "CDP"
27         default y
28         help
29           Enable Cisco Discovery Protocol
31 config BR2_PACKAGE_LLDPD_FDP
32         bool "FDP"
33         default y
34         help
35           Enable Foundry Discovery Protocol
37 config BR2_PACKAGE_LLDPD_EDP
38         bool "EDP"
39         default y
40         help
41           Enable Extreme Discovery Protocol
43 config BR2_PACKAGE_LLDPD_SONMP
44         bool "SONMP"
45         default y
46         help
47           Enable SynOptics Network Management
49 config BR2_PACKAGE_LLDPD_LLDPMED
50         bool "LLDP-MED"
51         default y
52         help
53           Enable LLDP-MED extension
55 config BR2_PACKAGE_LLDPD_DOT1
56         bool "DOT1"
57         default y
58         help
59           Enable Dot1 extension (VLAN stuff)
61 config BR2_PACKAGE_LLDPD_DOT3
62         bool "DOT3"
63         default y
64         help
65           Enable Dot3 extension (PHY stuff)
67 config BR2_PACKAGE_LLDPD_CUSTOM_TLV
68         bool "Custom TLV"
69         default y
70         help
71           Enable Custom TLV support
73 endif