mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
eba63b3b2e
This new release has following changes since version 0.9.0:
lldpd (0.9.2)
Change:
- Ability to add/remove/replace custom TLV from lldpcli.
- LLDP-MED capabilities are displayed differently in lldpcli.
- Limit the maximum depth (5) when trying to apply a VLAN.
- Change JSON output format when using json-c to match Jansson
output.
- Integration tests for the major parts of lldpd, including use of
address and leak sanitizer.
Fix:
- LLDP-MED POE TLV are now displayed in lldpcli.
- Ignore lower link when it is in another namespace.
- Fix various problems with interfaces being enslaved.
- Fix a memory leak when modifying port-related settings.
lldpd (0.9.1)
Change:
- Rework packaging for OS X to make it work with El Capitan. To
simplify a bit, it is not possible anymore to build fat
binaries. Latest version of OS X supporting 32bit was 10.6.
Fix:
- By default, when using port alias as description, use port name
as port ID.
- Miscellaneous fixes with netlink cache.
- Ensure large netlink messages can be received.
Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
66 lines
2.4 KiB
BlitzBasic
66 lines
2.4 KiB
BlitzBasic
SUMMARY = "A 802.1ab implementation (LLDP) to help you locate neighbors of all your equipments"
|
|
SECTION = "net/misc"
|
|
LICENSE = "ISC"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/ISC;md5=f3b90e78ea0cffb20bf5cca7947a896d"
|
|
|
|
DEPENDS = "libbsd libevent"
|
|
|
|
SRC_URI = "\
|
|
http://media.luffy.cx/files/${BPN}/${BPN}-${PV}.tar.gz \
|
|
file://lldpd.init.d \
|
|
file://lldpd.default \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "b809887bc927fb558fd5dd64b6c0a494"
|
|
SRC_URI[sha256sum] = "6054f29d41faf32186a22331853a299c87f4419b4332df4a564f76a139305a32"
|
|
|
|
inherit autotools update-rc.d useradd systemd pkgconfig bash-completion
|
|
|
|
USERADD_PACKAGES = "${PN}"
|
|
USERADD_PARAM_${PN} = "--system -g lldpd --shell /bin/false lldpd"
|
|
GROUPADD_PARAM_${PN} = "--system lldpd"
|
|
|
|
EXTRA_OECONF += "--without-embedded-libevent \
|
|
--disable-oldies \
|
|
--with-privsep-user=lldpd \
|
|
--with-privsep-group=lldpd \
|
|
--with-systemdsystemunitdir=${systemd_system_unitdir} \
|
|
--without-sysusersdir \
|
|
"
|
|
|
|
PACKAGECONFIG ??= "cdp fdp edp sonmp lldpmed dot1 dot3"
|
|
PACKAGECONFIG[json] = "--with-json,--without-json,jansson"
|
|
PACKAGECONFIG[xml] = "--with-xml,--without-xml,libxm2"
|
|
PACKAGECONFIG[snmp] = "--with-snmp,--without-snmp,net-snmp"
|
|
PACKAGECONFIG[readline] = "--with-readline,--without-readline,readline"
|
|
PACKAGECONFIG[seccomp] = "--with-seccomp,--without-seccomp,libseccomp"
|
|
PACKAGECONFIG[cdp] = "--enable-cdp,--disable-cdp"
|
|
PACKAGECONFIG[fdp] = "--enable-fdp,--disable-fdp"
|
|
PACKAGECONFIG[edp] = "--enable-edp,--disable-edp"
|
|
PACKAGECONFIG[sonmp] = "--enable-sonmp,--disable-sonmp"
|
|
PACKAGECONFIG[lldpmed] = "--enable-lldpmed,--disable-lldpmed"
|
|
PACKAGECONFIG[dot1] = "--enable-dot1,--disable-dot1"
|
|
PACKAGECONFIG[dot3] = "--enable-dot3,--disable-dot3"
|
|
PACKAGECONFIG[custom] = "--enable-custom,--disable-custom"
|
|
|
|
INITSCRIPT_NAME = "lldpd"
|
|
INITSCRIPT_PARAMS = "defaults"
|
|
|
|
SYSTEMD_SERVICE_${PN} = "lldpd.service"
|
|
|
|
do_install_append() {
|
|
install -Dm 0755 ${WORKDIR}/lldpd.init.d ${D}${sysconfdir}/init.d/lldpd
|
|
install -Dm 0644 ${WORKDIR}/lldpd.default ${D}${sysconfdir}/default/lldpd
|
|
# Make an empty configuration file
|
|
touch ${D}${sysconfdir}/lldpd.conf
|
|
}
|
|
|
|
PACKAGES =+ "${PN}-zsh-completion"
|
|
|
|
FILES_${PN} += "${libdir}/sysusers.d"
|
|
RDEPENDS_${PN} += "os-release"
|
|
|
|
FILES_${PN}-zsh-completion += "${datadir}/zsh/"
|
|
# FIXME: zsh is broken in meta-oe so this cannot be enabled for now
|
|
#RDEPENDS_${PN}-zsh-completion += "zsh"
|