aboutsummaryrefslogtreecommitdiff
path: root/net/mstpd
Commit message (Collapse)AuthorAge
* mstpd: drop package (replaced by ustp in core)Alexandru Ardelean2023-05-26
| | | | | | | | | | | | | | OpenWrt core has a package called ustp which is an OpenWrt adaptation (from mstpd) for OpenWrt (using libubox, libubus, etc). No sense in keeping mstpd anymore. We can just update ustp. Also, if mstpd has any updates, they can be ported over to ustp too. Abandoned PR: https://github.com/openwrt/packages-abandoned/pull/30 Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* mstpd: bump to version 0.1.0Alexandru Ardelean2021-10-27
| | | | | | And switch to AUTORELEASE for PKG_RELEASE. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* mstpd: bump to version 0.0.9Alexandru Ardelean2021-02-26
| | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* treewide: Run refresh on all packagesIlya Lipnitskiy2021-02-20
| | | | | | | | | The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
* mstpd: fix compilation with uClibc-ngRosen Penev2020-08-31
| | | | | | bcopy/bzero are no longer available. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* net: mstpd: new package (multiple spanning tree daemon)Alexandru Ardelean2019-07-05
This change adds support for mstpd (Multiple Spanning Tree Protocol Daemon). mstpd works reasonably well with RSTP. MSTP protocol works ok, but is known to have some issues with some managed switches. In order to get this to work, each physical switch port needs to have it's own software network interface (so, for example: port 0 <==> eth0). This means that this is suited mostly for higher end devices that can process STP packets in software. An interface for `swconfig` or Linux's DSA or switchdev would haven been interesting, but it never materialized. Adding this in the OpenWrt packages feed may provide some interest or feedback on whether `mstpd` should do more, to integrate with managed switches and offer some basis for Linux (through OpenWrt) as an OS for managed switches. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>