mirror of
https://github.com/openwrt/routing.git
synced 2026-04-15 19:02:12 +00:00
Version 3.2.0 (2025-12-26) - BGP: Listening socket rework - IGP metric: Split out local_metric again - Table: Optimal and Any Export refactoring - Various race condition fixes - All fixes included in 3.1.0 -- 3.1.5 - Merged 2.18 Signed-off-by: Packet Please <pktpls@systemli.org>
125 lines
3.7 KiB
Makefile
125 lines
3.7 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=bird3
|
|
PKG_VERSION:=3.2.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=bird-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://bird.nic.cz/download/
|
|
PKG_HASH:=5e6ff6a22cf92ba73ebf2e4bbcd9360328b52c7497ef70e4cf11089fa5a216b2
|
|
|
|
PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk>, Nick Hainke <vincent@systemli.org>
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
|
|
PKG_BUILD_DEPENDS:=ncurses readline
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/bird-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/bird3
|
|
TITLE:=The BIRD Internet Routing Daemon (v3)
|
|
URL:=https://bird.nic.cz/
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Routing and Redirection
|
|
DEPENDS:=+libpthread +libatomic
|
|
CONFLICTS:=bird2
|
|
endef
|
|
|
|
define Package/bird3c
|
|
TITLE:=The BIRD command-line client (v3)
|
|
URL:=https://bird.nic.cz/
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Routing and Redirection
|
|
DEPENDS:=+bird3 +libreadline +libncurses
|
|
CONFLICTS:=bird2
|
|
endef
|
|
|
|
define Package/bird3cl
|
|
TITLE:=The BIRD lightweight command-line client (v2)
|
|
URL:=https://bird.nic.cz/
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Routing and Redirection
|
|
DEPENDS:=+bird3
|
|
CONFLICTS:=bird2
|
|
endef
|
|
|
|
define Package/bird3/Default/description
|
|
BIRD is an internet routing daemon which manages TCP/IP routing tables
|
|
with support of modern routing protocols, easy to use configuration
|
|
interface and powerful route filtering language. It is lightweight and
|
|
efficient and therefore appropriate for small embedded routers.
|
|
endef
|
|
|
|
define Package/bird3/description
|
|
$(call Package/bird3/Default/description)
|
|
|
|
BIRD supports OSPFv2, RIPv2, Babel and BGP protocols for IPv4 and
|
|
OSPFv3, RIPng, Babel and BGP protocols for IPv6.
|
|
|
|
In BGP, BIRD supports communities, multiprotocol extensions, MD5
|
|
authentication, 32bit AS numbers and could act as a route server or a
|
|
route reflector. BIRD also supports multiple RIBs, multiple kernel
|
|
routing tables and redistribution between the protocols with a powerful
|
|
configuration syntax.
|
|
|
|
This is the 3.0 branch of Bird which is a multithreaded rewrite.
|
|
endef
|
|
|
|
define Package/bird3c/description
|
|
$(call Package/bird3/Default/description)
|
|
|
|
This is a BIRD command-line client. It is used to send commands to BIRD,
|
|
commands can perform simple actions such as enabling/disabling of
|
|
protocols, telling BIRD to show various information, telling it to show
|
|
a routing table filtered by a filter, or asking BIRD to reconfigure.
|
|
|
|
Unless you can't afford dependency on ncurses and readline, you
|
|
should install BIRD command-line client together with BIRD.
|
|
endef
|
|
|
|
define Package/bird3cl/description
|
|
$(call Package/bird3/Default/description)
|
|
|
|
This is a BIRD lightweight command-line client. It is used to send commands
|
|
to BIRD, commands can perform simple actions such as enabling/disabling of
|
|
protocols, telling BIRD to show various information, telling it to show
|
|
a routing table filtered by a filter, or asking BIRD to reconfigure.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += --disable-libssh
|
|
TARGET_LDFLAGS += -latomic
|
|
|
|
define Package/bird3/conffiles
|
|
/etc/bird.conf
|
|
/etc/bird4.conf
|
|
/etc/bird6.conf
|
|
endef
|
|
|
|
define Package/bird3/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bird $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/doc/bird.conf.example $(1)/etc/bird.conf
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/bird.init $(1)/etc/init.d/bird
|
|
endef
|
|
|
|
define Package/bird3c/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/birdc $(1)/usr/sbin/
|
|
endef
|
|
|
|
define Package/bird3cl/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/birdcl $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,bird3))
|
|
$(eval $(call BuildPackage,bird3c))
|
|
$(eval $(call BuildPackage,bird3cl))
|