Files
bpfire/lfs/bird
Adolf Belka 0f447b470a bird: Update to version 2.0.9
- Update from version 2.0.8 to 2.0.9
- Update of rootfile not required
- Changelog
	Version 2.0.9 (2022-02-09)
	  o BGP: Flowspec validation procedure
	  o Babel: MAC authentication support
	  o Routing table configuration blocks
	  o Optional prefix trie in routing table for faster LPM/interval queries
	  o CLI: New 'show route in <prefix>' command
	  o Filter: Faster (16-way) prefix sets
	  o Filter: MPLS label route attribute
	  o Filter: Operators to pick community components
	  o Filter: Operators to find minimum and maximum element of lists
	  o BGP: New 'free bind' option
	  o BGP: Log route updates that were changed to withdraws
	  o BGP: Improved 'invalid next hop' error reporting
	  o OSPF: Allow ifaces with host address as unnumbered PtP or PtMP ifaces
	  o OSPF: All packets on PtP networks should be sent to AllSPFRouters address
	  o Scripts for apkg-powered upstream packaging for deb and rpm
	  o Support for Blake2s and Blake2b hash functions
	  o Security keys / passwords can be entered in hexadecimal digits
	  o Memory statistics split into Effective and Overhead
	  o Linux: New option 'netlink rx buffer' to specify netlink socket buffer size
	  o BSD: Assume onlink flag on ifaces with only host addresses
	  o Many bugfixes
	  Notes:
	  - For OSPF on PtP network, BIRD now sends all packets to multicast AllSPFRouters
	    address (as required in RFC 2328 8.1). This likely breaks setups with multiple
	    neighbors on a network configured as PtP, which worked in previous versions.
	    Such links should be configured as PtMP.
	  - Since Linux 5.3, netlink socket can be flooded by route cache entries during
	    route table scan. This version mitigates that issue by using strict netlink
	    filtering.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-04-18 21:06:22 +00:00

105 lines
3.6 KiB
Plaintext

###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2018 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
SUMMARY = The BIRD Internet Routing Daemon
VER = 2.0.9
THISAPP = bird-$(VER)
DL_FILE = $(THISAPP).tar.gz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = bird
PAK_VER = 9
DEPS =
SERVICES = bird
CFLAGS += -fcommon
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_BLAKE2 = 5226058ba8989a28e8151906e194fd3065276034f1304e0e45772b17f3d8095eff6add211320a23418bfb57b2c16c96594fb85345355e3b870d7bfa2cfe119b9
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
b2 : $(subst %,%_BLAKE2,$(objects))
dist:
@$(PAK)
###############################################################################
# Downloading, checking, b2sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_BLAKE2,$(objects)) :
@$(B2SUM)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
$(UPDATE_AUTOMAKE)
cd $(DIR_APP) && \
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
# Install backup include
install -v -m 644 $(DIR_SRC)/config/backup/includes/bird \
/var/ipfire/backup/addons/includes/bird
# Install initscript
$(call INSTALL_INITSCRIPTS,$(SERVICES))
@rm -rf $(DIR_APP)
@$(POSTBUILD)