mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-09 05:49:23 +00:00
13f7a66c6d
Changelog: ============ - README.md: update IRC channel location - ctl_socket_server: require root for changing configuration - mstp: validate admin port path costs - mstp: do not allow changing Bridge Hello Time - mstp: do not overflow calculated root path costs - mstp: increase maxHops limit to 100 - README.md: add packaging status - README.md: update FID/MSTI limits - README.md: clarify IVL/SVL and MSTI support in linux - packet: set socket priority to TC_PRIO_CONTROL - TCSM: fix infinite recursion for MSTI per-tree ports Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
31 lines
921 B
BlitzBasic
31 lines
921 B
BlitzBasic
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=4325afd396febcb659c36b49533135d4"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/mstpd/mstpd;branch=master;protocol=https;tag=${PV} \
|
|
file://bridge-stp \
|
|
file://mstpd.service \
|
|
"
|
|
SRCREV = "8995e5d11ee89f2251734e34cea711bb5a5bb911"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+){2,})"
|
|
|
|
inherit autotools pkgconfig systemd
|
|
|
|
PACKAGES =+ "${PN}-mstpd"
|
|
FILES:${PN}-mstpd = "${sbindir}/mstpd ${sbindir}/mstpctl ${sbindir}/bridge-stp"
|
|
|
|
SYSTEMD_PACKAGES = "${PN}-mstpd"
|
|
SYSTEMD_SERVICE:${PN}-mstpd = "mstpd.service"
|
|
|
|
do_install:append() {
|
|
rm -rf ${D}${libexecdir} ${D}${libdir}/NetworkManager
|
|
rmdir ${D}${libdir} || true
|
|
|
|
install -d -m 0755 ${D}${sbindir}
|
|
install -m 0755 ${UNPACKDIR}/bridge-stp ${D}${sbindir}
|
|
|
|
install -d -m 0755 ${D}${systemd_system_unitdir}
|
|
install -m 0644 ${UNPACKDIR}/mstpd.service ${D}${systemd_system_unitdir}
|
|
}
|