* [Buildroot] [PATCH 0/2] package/mrouted: bump version to v4.4
@ 2021-11-03 12:34 Joachim Wiberg
2021-11-03 12:34 ` [Buildroot] [PATCH 1/2] " Joachim Wiberg
2021-11-03 12:34 ` [Buildroot] [PATCH 2/2] DEVELOPERS: add Joachim Wiberg as co-maintainer for mrouted Joachim Wiberg
0 siblings, 2 replies; 7+ messages in thread
From: Joachim Wiberg @ 2021-11-03 12:34 UTC (permalink / raw)
To: buildroot; +Cc: Joachim Wiberg, Matt Weber
This patch updates mrouted from v4.2 to v4.4. A lot has happened between
these releases, e.g. the experimental RSRR mode has been dropped. Other
notable changes are:
- Support for multiple instances on the same router
- Support for multiple multicast routing tables
- Fix for segfault when parsing phyint directives in mrouted.conf
- Fix for broken (built-in) IPIP tunnels (tunnel VIFs)
Full changelogs at https://github.com/troglobit/mrouted/releases
Best regards
/Joachim
Joachim Wiberg (2):
package/mrouted: bump version to v4.4
DEVELOPERS: add Joachim Wiberg as co-maintainer for mrouted
DEVELOPERS | 1 +
package/mrouted/Config.in | 13 -------------
package/mrouted/mrouted.hash | 5 ++---
package/mrouted/mrouted.mk | 8 +-------
4 files changed, 4 insertions(+), 23 deletions(-)
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 1/2] package/mrouted: bump version to v4.4
2021-11-03 12:34 [Buildroot] [PATCH 0/2] package/mrouted: bump version to v4.4 Joachim Wiberg
@ 2021-11-03 12:34 ` Joachim Wiberg
2021-11-03 17:45 ` Thomas Petazzoni
2021-11-03 12:34 ` [Buildroot] [PATCH 2/2] DEVELOPERS: add Joachim Wiberg as co-maintainer for mrouted Joachim Wiberg
1 sibling, 1 reply; 7+ messages in thread
From: Joachim Wiberg @ 2021-11-03 12:34 UTC (permalink / raw)
To: buildroot; +Cc: Joachim Wiberg, Matt Weber
- Upstream has .sha256 checksums now, drop redundant .md5
- Upstream has dropped RSRR support, drop config support
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
---
package/mrouted/Config.in | 13 -------------
package/mrouted/mrouted.hash | 5 ++---
package/mrouted/mrouted.mk | 8 +-------
3 files changed, 3 insertions(+), 23 deletions(-)
diff --git a/package/mrouted/Config.in b/package/mrouted/Config.in
index f8dd173c4a..95b4fb3825 100644
--- a/package/mrouted/Config.in
+++ b/package/mrouted/Config.in
@@ -11,16 +11,3 @@ config BR2_PACKAGE_MROUTED
Note: at least two interfaces with MULTICAST flag is requried.
http://github.com/troglobit/mrouted
-
-if BR2_PACKAGE_MROUTED
-
-config BR2_PACKAGE_MROUTED_RSRR
- bool "enable RSRR for RSVP"
- help
- Routing Support for Resource Reservation, currently used by
- RSVP. This is an EXPERIMENTAL feature.
-
- For details, see:
- http://tools.ietf.org/html/draft-ietf-rsvp-routing-02
-
-endif
diff --git a/package/mrouted/mrouted.hash b/package/mrouted/mrouted.hash
index 188293025f..affb323b4b 100644
--- a/package/mrouted/mrouted.hash
+++ b/package/mrouted/mrouted.hash
@@ -1,6 +1,5 @@
-# From https://github.com/troglobit/mrouted/releases/download/4.2/mrouted-4.2.tar.gz.md5
-md5 b921f9e152e039efdac745438ef8362c mrouted-4.2.tar.gz
+# From https://github.com/troglobit/mrouted/releases/download/4.4/mrouted-4.4.tar.gz.sha256
+sha256 095439e544d69c91ed64fa87db7e35bc2155eef48b7f268281d80946d2c6b953 mrouted-4.4.tar.gz
# Locally calculated
-sha256 689541334ea951286054b771640e9d0f26b6a3242ff7f3894a3ef1b680811b34 mrouted-4.2.tar.gz
sha256 834f45ed282fd010f354ecc0a50538af519a1cfcc4d2866de3be06982fa9ed29 LICENSE
diff --git a/package/mrouted/mrouted.mk b/package/mrouted/mrouted.mk
index 95da0c622c..4014b8f896 100644
--- a/package/mrouted/mrouted.mk
+++ b/package/mrouted/mrouted.mk
@@ -4,7 +4,7 @@
#
################################################################################
-MROUTED_VERSION = 4.2
+MROUTED_VERSION = 4.4
MROUTED_SITE = \
https://github.com/troglobit/mrouted/releases/download/$(MROUTED_VERSION)
MROUTED_DEPENDENCIES = host-bison
@@ -12,12 +12,6 @@ MROUTED_LICENSE = BSD-3-Clause
MROUTED_LICENSE_FILES = LICENSE
MROUTED_CPE_ID_VENDOR = troglobit
-ifeq ($(BR2_PACKAGE_MROUTED_RSRR),y)
-MROUTED_CONF_OPTS += --enable-rsrr
-else
-MROUTED_CONF_OPTS += --disable-rsrr
-endif
-
define MROUTED_INSTALL_INIT_SYSV
$(INSTALL) -m 755 -D package/mrouted/S41mrouted \
$(TARGET_DIR)/etc/init.d/S41mrouted
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] DEVELOPERS: add Joachim Wiberg as co-maintainer for mrouted
2021-11-03 12:34 [Buildroot] [PATCH 0/2] package/mrouted: bump version to v4.4 Joachim Wiberg
2021-11-03 12:34 ` [Buildroot] [PATCH 1/2] " Joachim Wiberg
@ 2021-11-03 12:34 ` Joachim Wiberg
2021-11-03 17:45 ` Thomas Petazzoni
2021-11-03 21:18 ` Peter Korsgaard
1 sibling, 2 replies; 7+ messages in thread
From: Joachim Wiberg @ 2021-11-03 12:34 UTC (permalink / raw)
To: buildroot; +Cc: Joachim Wiberg, Matt Weber
Since I'm the upstream maintainer, it'd be nice to get Cc:ed on any
issues with the package.
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
---
DEVELOPERS | 1 +
1 file changed, 1 insertion(+)
diff --git a/DEVELOPERS b/DEVELOPERS
index 65240615b0..4ddd855233 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1344,6 +1344,7 @@ F: board/globalscale/espressobin/
F: package/libite/
F: package/libuev/
F: package/mg/
+F: package/mrouted/
F: package/netcalc/
F: package/ssdp-responder/
F: package/sysklogd/
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH 2/2] DEVELOPERS: add Joachim Wiberg as co-maintainer for mrouted
2021-11-03 12:34 ` [Buildroot] [PATCH 2/2] DEVELOPERS: add Joachim Wiberg as co-maintainer for mrouted Joachim Wiberg
@ 2021-11-03 17:45 ` Thomas Petazzoni
2021-11-03 21:18 ` Peter Korsgaard
1 sibling, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2021-11-03 17:45 UTC (permalink / raw)
To: Joachim Wiberg; +Cc: Matt Weber, buildroot
On Wed, 3 Nov 2021 13:34:10 +0100
Joachim Wiberg <troglobit@gmail.com> wrote:
> Since I'm the upstream maintainer, it'd be nice to get Cc:ed on any
> issues with the package.
>
> Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
> ---
> DEVELOPERS | 1 +
> 1 file changed, 1 insertion(+)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/mrouted: bump version to v4.4
2021-11-03 12:34 ` [Buildroot] [PATCH 1/2] " Joachim Wiberg
@ 2021-11-03 17:45 ` Thomas Petazzoni
2021-11-03 21:13 ` Joachim Wiberg
0 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2021-11-03 17:45 UTC (permalink / raw)
To: Joachim Wiberg; +Cc: Matt Weber, buildroot
On Wed, 3 Nov 2021 13:34:09 +0100
Joachim Wiberg <troglobit@gmail.com> wrote:
> -config BR2_PACKAGE_MROUTED_RSRR
> - bool "enable RSRR for RSVP"
When an option gets removed, we normally add an entry in
Config.in.legacy to let the user know.
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/mrouted: bump version to v4.4
2021-11-03 17:45 ` Thomas Petazzoni
@ 2021-11-03 21:13 ` Joachim Wiberg
0 siblings, 0 replies; 7+ messages in thread
From: Joachim Wiberg @ 2021-11-03 21:13 UTC (permalink / raw)
To: Thomas Petazzoni; +Cc: Matt Weber, buildroot
[-- Attachment #1.1.1: Type: text/plain, Size: 540 bytes --]
On 11/3/21 6:45 PM, Thomas Petazzoni wrote:
> On Wed, 3 Nov 2021 13:34:09 +0100 Joachim Wiberg <troglobit@gmail.com> wrote:
>> -config BR2_PACKAGE_MROUTED_RSRR
>> - bool "enable RSRR for RSVP"
> When an option gets removed, we normally add an entry in
> Config.in.legacy to let the user know.
Ah, of course. I'll send a v2 later.
Q: that option is behind a condition (only if BR2_PACKAGE_MROUTED),
how is this normally handled? I see no such constructs in the
Config.in.legacy file
Best regards
/Joachim
[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]
[-- Attachment #2: Type: text/plain, Size: 150 bytes --]
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH 2/2] DEVELOPERS: add Joachim Wiberg as co-maintainer for mrouted
2021-11-03 12:34 ` [Buildroot] [PATCH 2/2] DEVELOPERS: add Joachim Wiberg as co-maintainer for mrouted Joachim Wiberg
2021-11-03 17:45 ` Thomas Petazzoni
@ 2021-11-03 21:18 ` Peter Korsgaard
1 sibling, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2021-11-03 21:18 UTC (permalink / raw)
To: Joachim Wiberg; +Cc: Matt Weber, buildroot
>>>>> "Joachim" == Joachim Wiberg <troglobit@gmail.com> writes:
> Since I'm the upstream maintainer, it'd be nice to get Cc:ed on any
> issues with the package.
> Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Committed to 2021.02.x and 2021.08.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-11-03 21:18 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-03 12:34 [Buildroot] [PATCH 0/2] package/mrouted: bump version to v4.4 Joachim Wiberg
2021-11-03 12:34 ` [Buildroot] [PATCH 1/2] " Joachim Wiberg
2021-11-03 17:45 ` Thomas Petazzoni
2021-11-03 21:13 ` Joachim Wiberg
2021-11-03 12:34 ` [Buildroot] [PATCH 2/2] DEVELOPERS: add Joachim Wiberg as co-maintainer for mrouted Joachim Wiberg
2021-11-03 17:45 ` Thomas Petazzoni
2021-11-03 21:18 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox