c5d0507224
Add new Nokia build target and establish an arm64 build: Platform: arm64-nokia_ixs7215_52xb-r0 HwSKU: Nokia-7215-A1 ASIC: marvell Port Config: 48x1G + 4x10G How I did it - Change make files for saiserver and syncd to use Bulleseye kernel - Change Marvell SAI version to 1.11.0-1 - Add Prestera make files to build kernel, Flattened Device Tree blob and ramdisk for arm64 platforms - Provide device and platform related files for new platform support (arm64-nokia_ixs7215_52xb-r0).
26 lines
773 B
Makefile
26 lines
773 B
Makefile
#include $(PLATFORM_PATH)/sdk.mk
|
|
include $(PLATFORM_PATH)/sai.mk
|
|
include $(PLATFORM_PATH)/docker-syncd-mrvl.mk
|
|
include $(PLATFORM_PATH)/docker-syncd-mrvl-rpc.mk
|
|
include $(PLATFORM_PATH)/docker-saiserver-mrvl.mk
|
|
include $(PLATFORM_PATH)/libsaithrift-dev.mk
|
|
include $(PLATFORM_PATH)/one-image.mk
|
|
include $(PLATFORM_PATH)/prestera.mk
|
|
include $(PLATFORM_PATH)/platform-nokia.mk
|
|
|
|
SONIC_ALL += $(SONIC_ONE_IMAGE) \
|
|
$(DOCKER_FPM) \
|
|
$(DOCKER_PTF_MRVL) \
|
|
$(DOCKER_SYNCD_MRVL_RPC)
|
|
|
|
# Inject mrvl sai into syncd
|
|
$(SYNCD)_DEPENDS += $(MRVL_SAI)
|
|
$(SYNCD)_UNINSTALLS += $(MRVL_SAI)
|
|
|
|
ifeq ($(ENABLE_SYNCD_RPC),y)
|
|
$(SYNCD)_DEPENDS += $(LIBSAITHRIFT_DEV)
|
|
endif
|
|
|
|
# Runtime dependency on mrvl sai is set only for syncd
|
|
$(SYNCD)_RDEPENDS += $(MRVL_SAI)
|