mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-04 14:30:31 +00:00
debianpkg: Add option to build with RPKI
No RPKI support for Ubuntu 12.04 Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
This commit is contained in:
parent
c8cd451cab
commit
100c355e51
@ -71,9 +71,14 @@ adding a new backport.
|
|||||||
Or change some options:
|
Or change some options:
|
||||||
(see `rules` file for available options)
|
(see `rules` file for available options)
|
||||||
|
|
||||||
export WANT_BGP_VNC=1
|
debuild --set-envvar=WANT_BGP_VNC=1 --set-envvar=WANT_CUMULUS_MODE=1 -b -uc -us
|
||||||
export WANT_CUMULUS_MODE=1
|
|
||||||
debuild -b -uc -us
|
To build with RPKI, download the librtr packages from
|
||||||
|
https://ci1.netdef.org/browse/RPKI-RTRLIB/latestSuccessful/artifact
|
||||||
|
install librtr-dev on the build server and build the packages as
|
||||||
|
debuild --set-envvar=WANT_RPKI=1 -b -uc -us
|
||||||
|
RPKI packages have an additonal dependency of librtr0 which can be
|
||||||
|
found at the same URL
|
||||||
|
|
||||||
DONE.
|
DONE.
|
||||||
|
|
||||||
|
@ -16,6 +16,8 @@ WANT_CUMULUS_MODE ?= 0
|
|||||||
WANT_MULTIPATH ?= 1
|
WANT_MULTIPATH ?= 1
|
||||||
WANT_SNMP ?= 0
|
WANT_SNMP ?= 0
|
||||||
|
|
||||||
|
# NOTES:
|
||||||
|
#
|
||||||
# If multipath is enabled (WANT_MULTIPATH=1), then set number of multipaths here
|
# If multipath is enabled (WANT_MULTIPATH=1), then set number of multipaths here
|
||||||
# Please be aware that 0 is NOT disabled, but treated as unlimited
|
# Please be aware that 0 is NOT disabled, but treated as unlimited
|
||||||
|
|
||||||
|
@ -15,7 +15,18 @@ WANT_BGP_VNC ?= 1
|
|||||||
WANT_CUMULUS_MODE ?= 0
|
WANT_CUMULUS_MODE ?= 0
|
||||||
WANT_MULTIPATH ?= 1
|
WANT_MULTIPATH ?= 1
|
||||||
WANT_SNMP ?= 0
|
WANT_SNMP ?= 0
|
||||||
|
WANT_RPKI ?= 0
|
||||||
|
|
||||||
|
# NOTES:
|
||||||
|
#
|
||||||
|
# If you use WANT_RPKI, then there is a new dependency for librtr0 package
|
||||||
|
# and a build dependency of the librtr-dev package.
|
||||||
|
# While the librtr0 is added to the depenencies automatically, the build
|
||||||
|
# dependency can't be changed dynamically and building will fail if the
|
||||||
|
# librtr-dev isn't installed during package build
|
||||||
|
# Tested versions of both packages can be found at
|
||||||
|
# https://ci1.netdef.org/browse/RPKI-RTRLIB/latestSuccessful/artifact
|
||||||
|
#
|
||||||
# If multipath is enabled (WANT_MULTIPATH=1), then set number of multipaths here
|
# If multipath is enabled (WANT_MULTIPATH=1), then set number of multipaths here
|
||||||
# Please be aware that 0 is NOT disabled, but treated as unlimited
|
# Please be aware that 0 is NOT disabled, but treated as unlimited
|
||||||
|
|
||||||
@ -91,6 +102,12 @@ else
|
|||||||
USE_CUMULUS=--enable-cumulus=no
|
USE_CUMULUS=--enable-cumulus=no
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(WANT_RPKI), 1)
|
||||||
|
USE_RPKI=--enable-rpki
|
||||||
|
else
|
||||||
|
USE_RPKI=--disable-rpki
|
||||||
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
||||||
DEBIAN_JOBS := $(subst parallel=,,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
DEBIAN_JOBS := $(subst parallel=,,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
||||||
endif
|
endif
|
||||||
@ -102,6 +119,11 @@ endif
|
|||||||
%:
|
%:
|
||||||
dh $@ --with=autoreconf --parallel --dbg-package=frr-dbg --list-missing
|
dh $@ --with=autoreconf --parallel --dbg-package=frr-dbg --list-missing
|
||||||
|
|
||||||
|
override_dh_gencontrol:
|
||||||
|
ifeq ($(WANT_RPKI), 1)
|
||||||
|
dh_gencontrol -- -Vdist:Depends="librtr0 (>= 0.5)"
|
||||||
|
endif
|
||||||
|
|
||||||
override_dh_auto_configure:
|
override_dh_auto_configure:
|
||||||
# Frr needs /proc to check some BSD vs Linux specific stuff.
|
# Frr needs /proc to check some BSD vs Linux specific stuff.
|
||||||
# Else it fails with an obscure error message pointing out that
|
# Else it fails with an obscure error message pointing out that
|
||||||
@ -134,6 +156,7 @@ override_dh_auto_configure:
|
|||||||
$(USE_PIM) \
|
$(USE_PIM) \
|
||||||
--enable-dependency-tracking \
|
--enable-dependency-tracking \
|
||||||
$(USE_BGP_VNC) \
|
$(USE_BGP_VNC) \
|
||||||
|
$(USE_RPKI) \
|
||||||
$(shell dpkg-buildflags --export=configure); \
|
$(shell dpkg-buildflags --export=configure); \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -15,7 +15,18 @@ WANT_BGP_VNC ?= 1
|
|||||||
WANT_CUMULUS_MODE ?= 0
|
WANT_CUMULUS_MODE ?= 0
|
||||||
WANT_MULTIPATH ?= 1
|
WANT_MULTIPATH ?= 1
|
||||||
WANT_SNMP ?= 0
|
WANT_SNMP ?= 0
|
||||||
|
WANT_RPKI ?= 0
|
||||||
|
|
||||||
|
# NOTES:
|
||||||
|
#
|
||||||
|
# If you use WANT_RPKI, then there is a new dependency for librtr0 package
|
||||||
|
# and a build dependency of the librtr-dev package.
|
||||||
|
# While the librtr0 is added to the depenencies automatically, the build
|
||||||
|
# dependency can't be changed dynamically and building will fail if the
|
||||||
|
# librtr-dev isn't installed during package build
|
||||||
|
# Tested versions of both packages can be found at
|
||||||
|
# https://ci1.netdef.org/browse/RPKI-RTRLIB/latestSuccessful/artifact
|
||||||
|
#
|
||||||
# If multipath is enabled (WANT_MULTIPATH=1), then set number of multipaths here
|
# If multipath is enabled (WANT_MULTIPATH=1), then set number of multipaths here
|
||||||
# Please be aware that 0 is NOT disabled, but treated as unlimited
|
# Please be aware that 0 is NOT disabled, but treated as unlimited
|
||||||
|
|
||||||
@ -91,6 +102,12 @@ else
|
|||||||
USE_CUMULUS=--enable-cumulus=no
|
USE_CUMULUS=--enable-cumulus=no
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(WANT_RPKI), 1)
|
||||||
|
USE_RPKI=--enable-rpki
|
||||||
|
else
|
||||||
|
USE_RPKI=--disable-rpki
|
||||||
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
||||||
DEBIAN_JOBS := $(subst parallel=,,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
DEBIAN_JOBS := $(subst parallel=,,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
||||||
endif
|
endif
|
||||||
@ -102,6 +119,11 @@ endif
|
|||||||
%:
|
%:
|
||||||
dh $@ --with=systemd,autoreconf --parallel --dbg-package=frr-dbg --list-missing
|
dh $@ --with=systemd,autoreconf --parallel --dbg-package=frr-dbg --list-missing
|
||||||
|
|
||||||
|
override_dh_gencontrol:
|
||||||
|
ifeq ($(WANT_RPKI), 1)
|
||||||
|
dh_gencontrol -- -Vdist:Depends="librtr0 (>= 0.5)"
|
||||||
|
endif
|
||||||
|
|
||||||
override_dh_auto_configure:
|
override_dh_auto_configure:
|
||||||
# Frr needs /proc to check some BSD vs Linux specific stuff.
|
# Frr needs /proc to check some BSD vs Linux specific stuff.
|
||||||
# Else it fails with an obscure error message pointing out that
|
# Else it fails with an obscure error message pointing out that
|
||||||
@ -135,6 +157,7 @@ override_dh_auto_configure:
|
|||||||
$(USE_PIM) \
|
$(USE_PIM) \
|
||||||
--enable-dependency-tracking \
|
--enable-dependency-tracking \
|
||||||
$(USE_BGP_VNC) \
|
$(USE_BGP_VNC) \
|
||||||
|
$(USE_RPKI) \
|
||||||
$(shell dpkg-buildflags --export=configure); \
|
$(shell dpkg-buildflags --export=configure); \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user