63de341dd6
* Add switch ASIC vendor and platforms for Nephos - What I did Add switch ASIC vendor: Nephos Add Nephos platforms: Ingrasys S9130-32X, Ingrasys S9230-64X - How I did it Add platform/nephos files Add platform/nephos/sonic-platform-modules-ingrasys submodule Add device/ingrasys/x86_64-ingrasys_s9130_32x-r0 files Add device/ingrasys/x86_64-ingrasys_s9230_64x-r0 files Add SONiC to support Nephos platform - How to verify it To build SONiC installer image and docker images, run the following commands: make configure PLATFORM=nephos make target/sonic-nephos.bin Check system and network feature is worked as well - Description for the changelog Add switch ASIC vendor and platforms for Nephos - A picture of a cute animal (not mandatory but encouraged) Signed-off-by: Sam Yang <yang.kaiyu@gmail.com> * Advance sonic-sairedis submodule to include #271 (Add Nephos ASIC)
27 lines
1.1 KiB
Makefile
27 lines
1.1 KiB
Makefile
include $(PLATFORM_PATH)/sdk.mk
|
|
include $(PLATFORM_PATH)/sai.mk
|
|
include $(PLATFORM_PATH)/platform-modules-ingrasys.mk
|
|
include $(PLATFORM_PATH)/docker-orchagent-nephos.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)/python-saithrift.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_2.0.1-20171020"
|
|
|
|
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)
|