#
|
|
# Copyright (C) 2019 Lucian Cristian <lucian.cristian@gmail.com>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
PKG_NAME:=frr
|
|
PKG_VERSION:=7.4
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=https://github.com/FRRouting/frr/archive/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_HASH:=3c8204fda1c9b178d8446562579bbbc49d134b98f3ad02aa56f68724a2f9e40a
|
|
PKG_MAINTAINER:=Lucian Cristian <lucian.cristian@gmail.com>
|
|
|
|
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_LICENSE:=GPL-2.0-only LGPL-2.1-only
|
|
|
|
PKG_DAEMON_AVAILABLE:= \
|
|
babeld \
|
|
bfdd \
|
|
bgpd \
|
|
eigrpd \
|
|
fabricd \
|
|
isisd \
|
|
ldpd \
|
|
nhrpd \
|
|
ospfd \
|
|
ospf6d \
|
|
pbrd \
|
|
pimd \
|
|
ripd \
|
|
ripngd \
|
|
staticd \
|
|
vrrpd
|
|
|
|
|
|
PKG_CONFIG_DEPENDS:= \
|
|
CONFIG_IPV6 \
|
|
CONFIG_FRR_OPENSSL \
|
|
CONFIG_FRR_INTERNAL \
|
|
CONFIG_FRR_SNMP \
|
|
CONFIG_FRR_NO_SNMP \
|
|
CONFIG_PACKAGE_frr-libfrr \
|
|
CONFIG_PACKAGE_frr-vtysh \
|
|
CONFIG_PACKAGE_frr-watchfrr \
|
|
CONFIG_PACKAGE_frr-zebra \
|
|
$(patsubst %,CONFIG_PACKAGE_frr-%,$(PKG_DAEMON_AVAILABLE)) \
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_INSTALL:=1
|
|
|
|
PKG_BUILD_DEPENDS:=frr/host
|
|
HOST_BUILD_DEPENDS:=python3/host
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
define Package/frr-libfrr/config
|
|
source "$(SOURCE)/Config.in"
|
|
endef
|
|
|
|
define Package/frr/Default
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Routing and Redirection
|
|
URL:=https://www.frrouting.org/
|
|
DEPENDS:=frr
|
|
endef
|
|
|
|
define Package/frr
|
|
$(call Package/frr/Default)
|
|
DEPENDS:=+librt
|
|
TITLE:=The FRRouting (FRR) Software Routing Suite
|
|
MENU:=1
|
|
endef
|
|
|
|
define Package/frr/description
|
|
FRRouting is free software that implements and manages various IPv4 and IPv6
|
|
routing protocols.
|
|
|
|
Currently FRRouting supports BGP4, BGP4+, OSPFv2, OSPFv3, RIPv1, RIPv2, RIPng,
|
|
IS-IS, PIM-SM/MSDP, LDP, VRRP and Babel as well as very early support for EIGRP and
|
|
NHRP.
|
|
endef
|
|
|
|
define Package/frr-libfrr
|
|
$(call Package/frr/Default)
|
|
TITLE:=zebra library
|
|
DEPENDS+=+librt +libatomic +libcap +libjson-c +libyang +FRR_OPENSSL:libopenssl +FRR_SNMP:libnetsnmp
|
|
CONFLICTS:=quagga-libzebra
|
|
endef
|
|
|
|
define Package/frr-vtysh
|
|
$(call Package/frr/Default)
|
|
DEPENDS+=+frr-libfrr +libreadline +libncurses +more
|
|
TITLE:=integrated shell for frr routing software
|
|
CONFLICTS:=quagga-vtysh
|
|
endef
|
|
|
|
define Package/frr-watchfrr
|
|
$(call Package/frr/Default)
|
|
TITLE:=frr watchdog
|
|
DEPENDS+=+frr-libfrr
|
|
DEFAULT:=y if PACKAGE_frr
|
|
endef
|
|
|
|
define Package/frr-zebra
|
|
$(call Package/frr/Default)
|
|
TITLE:=Zebra daemon
|
|
DEPENDS+=+frr-libfrr
|
|
DEFAULT:=y if PACKAGE_frr
|
|
CONFLICTS:=quagga-zebra
|
|
endef
|
|
|
|
##Migrate from quagga
|
|
##should test file exists and link in frr folder
|
|
#define Package/frr/postinst
|
|
##!/bin/sh
|
|
#if [ -f /etc/quagga/ospfd.conf ]; then
|
|
# ls to /etc/frr
|
|
# sed enable ospfd daemon
|
|
#fi
|
|
#exit 0
|
|
#endef
|
|
|
|
define BuildDaemon
|
|
define Package/frr-$(1)
|
|
$$(call Package/frr/Default)
|
|
TITLE:= $(1) routing engine
|
|
DEPENDS+=frr-libfrr $(2)
|
|
endef
|
|
|
|
define Package/frr-$(1)/install
|
|
$(INSTALL_DIR) $$(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/$(1) $$(1)/usr/sbin/; \
|
|
if [ "$(1)" == "nhrpd" ]; then \
|
|
$(INSTALL_DIR) $$(1)/usr/lib; \
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libfrrcares.so* $$(1)/usr/lib/; fi
|
|
endef
|
|
|
|
$$(eval $$(call BuildPackage,frr-$(1)))
|
|
endef
|
|
|
|
define Package/frr-libfrr/conffiles
|
|
/etc/frr/daemons
|
|
/etc/frr/frr.conf
|
|
/etc/frr/vtysh.conf
|
|
endef
|
|
|
|
TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed -latomic
|
|
TARGET_CFLAGS += -flto
|
|
|
|
define Host/Configure
|
|
$(Host/Configure/Default)
|
|
$(SED) 's/$$$$(MAKE) $$$$(AM_MAKEFLAGS) install-am/# $$$$(MAKE) $$$$(AM_MAKEFLAGS) install-am/' $(HOST_BUILD_DIR)/Makefile.in
|
|
endef
|
|
|
|
HOST_CONFIGURE_ARGS+= \
|
|
--enable-clippy-only
|
|
|
|
define Host/Install
|
|
$(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/bin
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/lib/clippy $(STAGING_DIR_HOSTPKG)/bin/
|
|
endef
|
|
|
|
CONFIGURE_ARGS+= \
|
|
--with-clippy=$(STAGING_DIR_HOSTPKG)/bin/clippy \
|
|
--prefix=/usr \
|
|
--enable-shared \
|
|
--disable-static \
|
|
--enable-user=network \
|
|
--enable-group=network \
|
|
--disable-ospfclient \
|
|
--disable-doc \
|
|
--disable-backtrace \
|
|
--localstatedir=/var/run/frr \
|
|
--sysconfdir=/etc/frr/ \
|
|
$(if $(CONFIG_FRR_OPENSSL),--with-crypto=openssl,) \
|
|
$(if $(CONFIG_FRR_SNMP),--enable-snmp,) \
|
|
$(foreach m,$(PKG_DAEMON_AVAILABLE), \
|
|
$(call autoconf_bool,CONFIG_PACKAGE_frr-$(m),$(m)) ) \
|
|
$(call autoconf_bool,CONFIG_PACKAGE_frr-vtysh,vtysh) \
|
|
$(call autoconf_bool,CONFIG_PACKAGE_frr-libfrr,zebra)
|
|
|
|
|
|
define Package/frr/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/frrcommon.sh $(1)/usr/sbin/
|
|
$(INSTALL_BIN) ./files/frr $(1)/etc/init.d/
|
|
endef
|
|
|
|
define Package/frr-watchfrr/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) ./files/watchfrr.sh $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/watchfrr $(1)/usr/sbin/
|
|
endef
|
|
|
|
define Package/frr-zebra/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/zebra $(1)/usr/sbin/
|
|
endef
|
|
|
|
define Package/frr-libfrr/install
|
|
$(INSTALL_DIR) $(1)/usr/lib $(1)/etc/frr
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libfrr.so* $(1)/usr/lib/
|
|
$(if $(CONFIG_FRR_SNMP),$(CP) $(PKG_INSTALL_DIR)/usr/lib/libfrrsnmp.so* $(1)/usr/lib/,)
|
|
$(INSTALL_CONF) ./files/{frr.conf,daemons} $(1)/etc/frr/
|
|
endef
|
|
|
|
define Package/frr-vtysh/install
|
|
$(INSTALL_DIR) $(1)/usr/bin $(1)/etc/frr
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/vtysh $(1)/usr/bin/
|
|
$(INSTALL_CONF) ./files/vtysh.conf $(1)/etc/frr/
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|
|
$(eval $(call BuildPackage,frr))
|
|
$(eval $(call BuildPackage,frr-libfrr))
|
|
$(eval $(call BuildPackage,frr-watchfrr))
|
|
$(eval $(call BuildPackage,frr-zebra))
|
|
$(eval $(call BuildPackage,frr-vtysh))
|
|
$(eval $(call BuildDaemon,babeld,))
|
|
$(eval $(call BuildDaemon,bfdd,))
|
|
$(eval $(call BuildDaemon,bgpd,))
|
|
$(eval $(call BuildDaemon,eigrpd,))
|
|
$(eval $(call BuildDaemon,fabricd,))
|
|
$(eval $(call BuildDaemon,isisd,))
|
|
$(eval $(call BuildDaemon,ldpd,))
|
|
$(eval $(call BuildDaemon,nhrpd,+libcares))
|
|
$(eval $(call BuildDaemon,ospfd,))
|
|
$(eval $(call BuildDaemon,ospf6d,@IPV6))
|
|
$(eval $(call BuildDaemon,pbrd,))
|
|
$(eval $(call BuildDaemon,pimd,))
|
|
$(eval $(call BuildDaemon,ripd,))
|
|
$(eval $(call BuildDaemon,ripngd,@IPV6))
|
|
$(eval $(call BuildDaemon,staticd,))
|
|
$(eval $(call BuildDaemon,vrrpd,))
|