Overall goal: Build debug images for every stretch docker. An earlier PR (#2789) made the first cut, by transforming broadcom/orchagent to build target/docker-orhagent-dbg.gz. Changes in this PR: Made docker-orchagent build to be platform independent. 1.1) Created rules/docker_orchagent.mk 1.2) Removed platform//docker-orchagent-*.mk 1.3) Removed the corresponding entry from platform//rules.mk Extended the debug docker image build to stretch based syncd dockers. 2.1) For now, only mellanox & barefoot are stretch based. 2.2) All the common variable definitions are put in one place platform/template/docker-syncd-base.mk 2.3) platform/[mellanox, bfn]/docker-syncd-[mlnx, bfn].mk are updated as detailed below. 2.3.1) Set platform code and include template base file 2.3.2) Add the dependencies & debug dependencies and any update over what base template offers. Extended all stretch based non-platform dockers to build debug dockers too. 3.1) Affected are: docker-database.mk, docker-platform-monitor.mk, docker-router-advertiser.mk, docker-teamd.mk, docker-telemetry.mk Next: Build debug flavor of final images with regular dockers replaced with debug dockers where available.
27 lines
1.0 KiB
Makefile
27 lines
1.0 KiB
Makefile
include $(PLATFORM_PATH)/sdk.mk
|
|
include $(PLATFORM_PATH)/sai.mk
|
|
include $(PLATFORM_PATH)/platform-modules-ingrasys.mk
|
|
include $(PLATFORM_PATH)/platform-modules-accton.mk
|
|
include $(PLATFORM_PATH)/platform-modules-cig.mk
|
|
include $(PLATFORM_PATH)/docker-syncd-nephos.mk
|
|
include $(PLATFORM_PATH)/docker-syncd-nephos-rpc.mk
|
|
include $(PLATFORM_PATH)/one-image.mk
|
|
include $(PLATFORM_PATH)/libsaithrift-dev.mk
|
|
include $(PLATFORM_PATH)/docker-ptf-nephos.mk
|
|
|
|
NPX_DIAG = npx_diag
|
|
$(NPX_DIAG)_URL = "https://github.com/NephosInc/SONiC/raw/master/sdk/npx_diag"
|
|
|
|
DSSERVE = dsserve
|
|
$(DSSERVE)_URL = "https://sonicstorage.blob.core.windows.net/packages/20170518/dsserve?sv=2015-04-05&sr=b&sig=gyNbgSL%2FvpMXDdpboVkIJcTKMRdGgEaOR9OukHhEsu8%3D&se=2030-03-31T23%3A06%3A35Z&sp=r"
|
|
|
|
SONIC_ONLINE_FILES += $(NPX_DIAG) $(DSSERVE)
|
|
|
|
SONIC_ALL += $(SONIC_ONE_IMAGE) $(DOCKER_FPM)
|
|
|
|
# Inject nephos sai into sairedis
|
|
$(LIBSAIREDIS)_DEPENDS += $(NEPHOS_SAI) $(NEPHOS_SAI_DEV) $(LIBSAITHRIFT_DEV_NEPHOS)
|
|
|
|
# Runtime dependency on nephos sai is set only for syncd
|
|
$(SYNCD)_RDEPENDS += $(NEPHOS_SAI)
|