Files
bpfire/lfs/iproute2
Adolf Belka c175e58946 iproute2: Update to version 5.13.0
- Update from 5.12.0 to 5.13.0
- Update of rootfile not required
- Changelog is not available in source tarball and not on source website
   Below info obtained from the commits from the git repository
   devlink: Fix printf() type mismatches on 32-bit architectures	Ben Hutchings
   utils: Fix BIT() to support up to 64 bits on all architectures	Ben Hutchings
   uapi: update headers to 5.13	Stephen Hemminger
   devlink: Fix link errors on some systems	Roi Dayan
   tc: pedit: add decrement operation	Asbjørn Sloth Tønnesen
   tc: pedit: parse_cmd: add flags argument	Asbjørn Sloth Tønnesen
   iplink: support for WWAN devices	Sergey Ryazanov
   iplink: add support for parent device	Sergey Ryazanov
   Import wwan.h uapi file	David Ahern
   man: fix syntax for ip link property	Stephen Hemminger
   seg6: add support for SRv6 End.DT46 Behavior	Paolo Lungaroni
   Update kernel headers	David Ahern
   utils: bump max args number to 512 for batch files	Guillaume Nault
   uapi: update kernel headers to 5.13-rc6	Stephen Hemminger
   Merge branch 'devlink-rate-support' into next	David Ahern
   devlink: Add ISO/IEC switch	Dmytro Linkin
   devlink: Add port func rate support	Dmytro Linkin
   devlink: Add helper function to validate object handler	Dmytro Linkin
   Update kernel headers	David Ahern
   devlink: Add optional controller user input	Parav Pandit
   police: Add support for json output	Roi Dayan
   tc: fq: add horizon attributes	Eric Dumazet
   configure: convert LIBBPF environment variables to command-line options	Hangbin Liu
   configure: add options ability	Hangbin Liu
   ss: update ss man page	Roman Mashak
   tc: f_flower: Add missing ct_state flags to usage description	Ariel Levkovich
   tc: f_flower: Add option to match on related ct state	Ariel Levkovich
   libgenl: make genl_add_mcast_grp set errno on error	Florian Westphal
   lib/fs: fix issue when {name,open}_to_handle_at() is not implemented	Heiko Thiery
   config.mk: Rerun configure when it is newer than config.mk	David Ahern
   ip: dynamically size columns when printing stats	Jakub Kicinski
   seg6: add counters support for SRv6 Behaviors	Paolo Lungaroni
   tc: htb: improve burst error messages	Andrea Claudi
   tipc: bail out if key is abnormally long	Andrea Claudi
   tipc: bail out if algname is abnormally long	Andrea Claudi
   tipc: call a sub-routine in separate socket	Hoang Le
   tc-cake: update docs to include LE diffserv	Tyson Moore
   dcb: fix memory leak	Andrea Claudi
   dcb: fix return value on dcb_cmd_app_show	Andrea Claudi
   lib: bpf_legacy: avoid to pass invalid argument to close()	Andrea Claudi
   tc: q_ets: drop dead code from argument parsing	Andrea Claudi
   ip: align the name of the 'nohandler' stat	Jakub Kicinski
   Update kernel headers	David Ahern
   Merge branch 'rdma-copy-on-fork' into next	David Ahern
   rdma: Add copy-on-fork to get sys command	Gal Pressman
   rdma: update uapi headers	Gal Pressman
   mptcp: make sure flag signal is set when add addr with port	Jianguo Wu
   Merge branch 'main' into next	David Ahern
   ip: Add nodst option to macvlan type source	Jethro Beekman
   Merge branch 'rdma-resource-tracking' into next	David Ahern
   rdma: Add SRQ resource tracking information	Neta Ostrovsky
   rdma: Add context resource tracking information	Neta Ostrovsky
   rdma: Update uapi headers	Neta Ostrovsky
   Update kernel headers	David Ahern

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2021-08-16 06:51:09 +00:00

82 lines
3.2 KiB
Plaintext

###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2020 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 5.13.0
THISAPP = iproute2-$(VER)
DL_FILE = $(THISAPP).tar.xz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 15fc3786303a173a14e180afe4cd2ecd
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
md5 : $(subst %,%_MD5,$(objects))
###############################################################################
# Downloading, checking, md5sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_MD5,$(objects)) :
@$(MD5)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && make $(MAKETUNING) SBINDIR=/sbin
cd $(DIR_APP) && make SBINDIR=/sbin install
cd $(DIR_APP) && mv -v /sbin/arpd /usr/sbin
# Add table for static routing
echo "200 static" >> /etc/iproute2/rt_tables
@rm -rf $(DIR_APP)
@$(POSTBUILD)