mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-10 19:15:54 +02:00
- Update iproute2 from 5.10.0 to 5.11.0 - Updated rootfile - Changelog extracted from commits lib/fs: Fix single return points for get_cgroup2_* Andrea Claudi lib/fs: avoid double call to mkdir on make_path() Andrea Claudi lib/bpf: Fix and simplify bpf_mnt_check_target() Andrea Claudi lib/namespace: fix ip -all netns return code Andrea Claudi ip: lwtunnel: seg6: bail out if table ids are invalid Andrea Claudi tc: m_gate: use SPRINT_BUF when needed Andrea Claudi man8/bridge.8: be explicit that "flood" is an egress setting Vladimir Oltean man8/bridge.8: explain self vs master for "bridge fdb add" Vladimir Oltean man8/bridge.8: fix which one of self/master is default for "bridge fdb" Vladimir Oltean man8/bridge.8: explain what a local FDB entry is Vladimir Oltean man8/bridge.8: document that "local" is default for "bridge fdb add" Vladimir Oltean man8/bridge.8: document the "permanent" flag for "bridge fdb add" Vladimir Oltean rdma: Fix statistics bind/unbing argument handling Ido Kalir uapi: pick up rpl.h fix Stephen Hemminger iproute: force rtm_dst_len to 32/128 Luca Boccassi ss: Add clarification about host conditions with multiple familes to man Thayne McCombs Add documentation of ss filter to man page Thayne McCombs iplink: print warning for missing VF data Edwin Peer ss: do not emit warn while dumping MPTCP on old kernels Paolo Abeni man: tc-taprio.8: document the full offload feature Vladimir Oltean iplink_bareudp: cleanup help message and man page Guillaume Nault vrf: fix ip vrf exec with libbpf Luca Boccassi vrf: print BPF log buffer if bpf_program_load fails Luca Boccassi build: Fix link errors on some systems Roi Dayan tc: flower: fix json output with mpls lse Guillaume Nault dcb: Change --Netns/-N to --netns/-n Petr Machata dcb: Plug a leaking DCB socket buffer Petr Machata dcb: Set values with RTM_SETDCB type Petr Machata uapi: update if_link.h from upstream Stephen Hemminger include: uapi: Carry dcbnl.h Petr Machata uapi: update kernel headers to 5.11 pre rc1 Signed-off-by: Adolf Belka (ipfire) <adolf.belka@ipfire.org> Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
82 lines
3.2 KiB
Plaintext
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.11.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 = a3c6b09590c0bd120f0ab0b6e36187a8
|
|
|
|
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)
|