mirror of
https://github.com/Telecominfraproject/ols-nos.git
synced 2025-11-26 19:24:56 +00:00
- Extending SONiC building infrastructure to provide users
with greater flexibility, by allowing them to elect a
routing-stack different than the default one (quagga). The desired
routing-stack will be defined in rules/config file.
- As part of these changes I'm adding support for
Free-Range-Routing (FRR) stack. Quagga will continue to be
the default routing-stack.
Signed-off-by: Rodny Molina <rodny@linkedin.com>
10 lines
327 B
Makefile
10 lines
327 B
Makefile
# Docker-fpm rule-file is simply a wrapper containing routing-stack selection logic.
|
|
|
|
ifeq ($(SONIC_ROUTING_STACK), quagga)
|
|
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_FPM_QUAGGA)
|
|
else ifeq ($(SONIC_ROUTING_STACK), frr)
|
|
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_FPM_FRR)
|
|
else
|
|
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_FPM_GOBGP)
|
|
endif
|