Skip to content

Commit

Permalink
Rename INCLUDE_BGP flag to INCLUDE_ROUTING_STACK (sonic-net#9)
Browse files Browse the repository at this point in the history
Signed-off-by: Maksym Hedeon <maksym@githedgehog.com>

Signed-off-by: Maksym Hedeon <maksym@githedgehog.com>
  • Loading branch information
Maksym Hedeon committed Feb 1, 2023
1 parent cfe51a7 commit 727ac39
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rules/config
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ INCLUDE_TEAMD = y
# INCLUDE_ROUTER_ADVERTISER - build docker-radv for router advertiser support
INCLUDE_ROUTER_ADVERTISER = y

# INCLUDE_BGP - build docker-fmp-frr for BGP support
INCLUDE_BGP = y
# INCLUDE_ROUTING_STACK - build docker-fmp-frr for BGP support
INCLUDE_ROUTING_STACK = y

# INCLUDE_SWSS - build docker-swss for orchagent support
INCLUDE_SWSS = y
Expand Down
2 changes: 1 addition & 1 deletion rules/docker-fpm.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Docker-fpm rule-file is simply a wrapper containing routing-stack selection logic.

ifeq ($(INCLUDE_BGP), y)
ifeq ($(INCLUDE_ROUTING_STACK), y)
ifeq ($(SONIC_ROUTING_STACK), frr)
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_FPM_FRR)
SONIC_INSTALL_DOCKER_DBG_IMAGES += $(DOCKER_FPM_FRR_DBG)
Expand Down
2 changes: 1 addition & 1 deletion slave.mk
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ $(info "INCLUDE_LLDP" : "$(INCLUDE_LLDP)")
$(info "INCLUDE_SNMP" : "$(INCLUDE_SNMP)")
$(info "INCLUDE_TEAMD" : "$(INCLUDE_TEAMD)")
$(info "INCLUDE_ROUTER_ADVERTISER" : "$(INCLUDE_ROUTER_ADVERTISER)")
$(info "INCLUDE_BGP" : "$(INCLUDE_BGP)")
$(info "INCLUDE_ROUTING_STACK" : "$(INCLUDE_ROUTING_STACK)")
$(info "INCLUDE_SWSS" : "$(INCLUDE_SWSS)")
$(info "INCLUDE_PMON" : "$(INCLUDE_PMON)")
$(info "INCLUDE_DATABASE" : "$(INCLUDE_DATABASE)")
Expand Down

0 comments on commit 727ac39

Please sign in to comment.