mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: Christian Melki <christian.melki@t2data.com>
Subject: Re: [ptxdist] [APPLIED] iproute2: Version bump. 5.9.0 -> 5.17.0
Date: Fri,  8 Apr 2022 15:35:49 +0200	[thread overview]
Message-ID: <20220408133549.122188-1-m.olbrich@pengutronix.de> (raw)
In-Reply-To: <20220331071306.312890-1-christian.melki@t2data.com>

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


      reply	other threads:[~2022-04-08 13:36 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-31  7:13 [ptxdist] [PATCH] " Christian Melki
2022-04-08 13:35 ` Michael Olbrich [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220408133549.122188-1-m.olbrich@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --cc=christian.melki@t2data.com \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox