mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] iproute2: Version bump. 5.9.0 -> 5.17.0
@ 2022-03-31  7:13 Christian Melki
  2022-04-08 13:35 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Melki @ 2022-03-31  7:13 UTC (permalink / raw)
  To: ptxdist

1+ year worth of changes.
* Drop ifcfg, routef and rtpr. Not available any more.
* New programs were added, like, dcb, vdpa, rdma.
I don't see them as overly generic. If anyone is interested,
it should be a trivial addition.
* iproute2 handwritten "configure" seems more forgiving to
excess configure options. Looks like it works fine feeding
it with CROSS_AUTOCONF_USR.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/iproute2.in   | 20 --------------------
 rules/iproute2.make | 12 +++++-------
 2 files changed, 5 insertions(+), 27 deletions(-)

diff --git a/rules/iproute2.in b/rules/iproute2.in
index 25a5ae347..65077149c 100644
--- a/rules/iproute2.in
+++ b/rules/iproute2.in
@@ -65,14 +65,6 @@ config IPROUTE2_IP
 comment "busybox' ip is selected"
 	depends on BUSYBOX_IP
 
-config IPROUTE2_IFCFG
-	bool
-	prompt "ifcfg"
-	help
-	  ifcfg is a script wrapping ip, written as replacement for
-	  ifconfig.
-	  Needs arping and rdisk programs from the iputils package.
-
 config IPROUTE2_IFSTAT
 	bool
 	prompt "ifstat"
@@ -94,12 +86,6 @@ config IPROUTE2_NSTAT
 	help
 	  handy utility to read counters /proc/net/netstat and snmp
 
-config IPROUTE2_ROUTEF
-	bool
-	prompt "routef"
-	help
-	  Component of ip route for flushing the routing tables
-
 config IPROUTE2_ROUTEL
 	bool
 	prompt "routel"
@@ -118,12 +104,6 @@ config IPROUTE2_RTMON
 	help
 	  Route monitoring
 
-config IPROUTE2_RTPR
-	bool
-	prompt "rtpr"
-	help
-	  A tool to make the output of "ip -o" readable
-
 config IPROUTE2_RTSTAT
 	bool
 	prompt "rtstat"
diff --git a/rules/iproute2.make b/rules/iproute2.make
index 6643d9e22..5d630050e 100644
--- a/rules/iproute2.make
+++ b/rules/iproute2.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_IPROUTE2) += iproute2
 #
 # Paths and names
 #
-IPROUTE2_VERSION	:= 5.9.0
-IPROUTE2_MD5		:= 3966f12374e1beb70f1c21f30a350673
+IPROUTE2_VERSION	:= 5.17.0
+IPROUTE2_MD5		:= 8ade96ee93f37fba7e1beec89f1a54bf
 IPROUTE2		:= iproute2-$(IPROUTE2_VERSION)
 IPROUTE2_SUFFIX		:= tar.xz
 IPROUTE2_URL		:= $(call ptx/mirror, KERNEL, utils/net/iproute2/$(IPROUTE2).$(IPROUTE2_SUFFIX))
@@ -28,8 +28,9 @@ IPROUTE2_LICENSE	:= GPL-2.0-only
 # Prepare
 # ----------------------------------------------------------------------------
 
-# iproute2's configure is handcrafted and doesn't take standard configure options
-IPROUTE2_CONF_OPT := ''
+# iproute2's configure is handcrafted
+IPROUTE2_CONF_OPT := \
+	$(CROSS_AUTOCONF_USR)
 
 $(STATEDIR)/iproute2.prepare:
 	@$(call targetinfo)
@@ -61,15 +62,12 @@ IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_CTSTAT) +=	ctstat
 IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_DEVLINK) +=	devlink
 IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_GENL) +=	genl
 IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_IP) +=	ip
-IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_IFCFG) +=	ifcfg
 IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_IFSTAT) +=	ifstat
 IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_LNSTAT) +=	lnstat
 IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_NSTAT) +=	nstat
-IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_ROUTEF) +=	routef
 IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_ROUTEL) +=	routel
 IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_RTACCT) +=	rtacct
 IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_RTMON) +=	rtmon
-IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_RTPR) +=	rtpr
 IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_RTSTAT) +=	rtstat
 IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_SS) +=	ss
 IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_TC) +=	tc
-- 
2.32.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [ptxdist] [APPLIED] iproute2: Version bump. 5.9.0 -> 5.17.0
  2022-03-31  7:13 [ptxdist] [PATCH] iproute2: Version bump. 5.9.0 -> 5.17.0 Christian Melki
@ 2022-04-08 13:35 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2022-04-08 13:35 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 348ac27202b11446a74fea2dc9881e3c63de9e04.

Michael

[sent from post-receive hook]

On Fri, 08 Apr 2022 15:35:49 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> 1+ year worth of changes.
> * Drop ifcfg, routef and rtpr. Not available any more.
> * New programs were added, like, dcb, vdpa, rdma.
> I don't see them as overly generic. If anyone is interested,
> it should be a trivial addition.
> * iproute2 handwritten "configure" seems more forgiving to
> excess configure options. Looks like it works fine feeding
> it with CROSS_AUTOCONF_USR.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20220331071306.312890-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/iproute2.in b/rules/iproute2.in
> index 25a5ae347f9c..65077149c270 100644
> --- a/rules/iproute2.in
> +++ b/rules/iproute2.in
> @@ -65,14 +65,6 @@ config IPROUTE2_IP
>  comment "busybox' ip is selected"
>  	depends on BUSYBOX_IP
>  
> -config IPROUTE2_IFCFG
> -	bool
> -	prompt "ifcfg"
> -	help
> -	  ifcfg is a script wrapping ip, written as replacement for
> -	  ifconfig.
> -	  Needs arping and rdisk programs from the iputils package.
> -
>  config IPROUTE2_IFSTAT
>  	bool
>  	prompt "ifstat"
> @@ -94,12 +86,6 @@ config IPROUTE2_NSTAT
>  	help
>  	  handy utility to read counters /proc/net/netstat and snmp
>  
> -config IPROUTE2_ROUTEF
> -	bool
> -	prompt "routef"
> -	help
> -	  Component of ip route for flushing the routing tables
> -
>  config IPROUTE2_ROUTEL
>  	bool
>  	prompt "routel"
> @@ -118,12 +104,6 @@ config IPROUTE2_RTMON
>  	help
>  	  Route monitoring
>  
> -config IPROUTE2_RTPR
> -	bool
> -	prompt "rtpr"
> -	help
> -	  A tool to make the output of "ip -o" readable
> -
>  config IPROUTE2_RTSTAT
>  	bool
>  	prompt "rtstat"
> diff --git a/rules/iproute2.make b/rules/iproute2.make
> index 6643d9e2208f..5d630050e3f0 100644
> --- a/rules/iproute2.make
> +++ b/rules/iproute2.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_IPROUTE2) += iproute2
>  #
>  # Paths and names
>  #
> -IPROUTE2_VERSION	:= 5.9.0
> -IPROUTE2_MD5		:= 3966f12374e1beb70f1c21f30a350673
> +IPROUTE2_VERSION	:= 5.17.0
> +IPROUTE2_MD5		:= 8ade96ee93f37fba7e1beec89f1a54bf
>  IPROUTE2		:= iproute2-$(IPROUTE2_VERSION)
>  IPROUTE2_SUFFIX		:= tar.xz
>  IPROUTE2_URL		:= $(call ptx/mirror, KERNEL, utils/net/iproute2/$(IPROUTE2).$(IPROUTE2_SUFFIX))
> @@ -28,8 +28,9 @@ IPROUTE2_LICENSE	:= GPL-2.0-only
>  # Prepare
>  # ----------------------------------------------------------------------------
>  
> -# iproute2's configure is handcrafted and doesn't take standard configure options
> -IPROUTE2_CONF_OPT := ''
> +# iproute2's configure is handcrafted
> +IPROUTE2_CONF_OPT := \
> +	$(CROSS_AUTOCONF_USR)
>  
>  $(STATEDIR)/iproute2.prepare:
>  	@$(call targetinfo)
> @@ -61,15 +62,12 @@ IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_CTSTAT) +=	ctstat
>  IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_DEVLINK) +=	devlink
>  IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_GENL) +=	genl
>  IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_IP) +=	ip
> -IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_IFCFG) +=	ifcfg
>  IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_IFSTAT) +=	ifstat
>  IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_LNSTAT) +=	lnstat
>  IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_NSTAT) +=	nstat
> -IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_ROUTEF) +=	routef
>  IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_ROUTEL) +=	routel
>  IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_RTACCT) +=	rtacct
>  IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_RTMON) +=	rtmon
> -IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_RTPR) +=	rtpr
>  IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_RTSTAT) +=	rtstat
>  IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_SS) +=	ss
>  IPROUTE2_INSTALL_FILES-$(PTXCONF_IPROUTE2_TC) +=	tc

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-04-08 13:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-31  7:13 [ptxdist] [PATCH] iproute2: Version bump. 5.9.0 -> 5.17.0 Christian Melki
2022-04-08 13:35 ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox