307e39bde4
* [Marvell-arm64] Add platform support for rd98DX35xx This change adds following two variants of rd98DX35xx board to arm64 build. Board with CPU integrated into the 98DX35xx switching chip: Platform: arm64-marvell_rd98DX35xx-r0 HwSKU: rd98DX35xx ASIC: marvell Port Config: 32x1G + 16x2.5G + 6x25G Board with external CN9131 CPU connected over PCI to 98DX35xx switching chip: Platform: arm64-marvell_rd98DX35xx_cn9131-r0 HwSKU: rd98DX35xx_cn9131 ASIC: marvell Port Config: 32x1G + 16x2.5G + 6x25G Change-Id: I21dc9fe972417daaabb20a5bddf7779d72b7972e Signed-off-by: Pavan Naregundi <pnaregundi@marvell.com> * Add HWSKU for rd98DX35xx and rd98DX35xx_cn9131 This patch adds new HWSKU's for Marvell arm64 platforms rd98DX35xx and rd98DX35xx_cn9131. Change-Id: Id7c14f49f0e304335cc4ca73dcae52362c49d231 Signed-off-by: Pavan Naregundi <pnaregundi@marvell.com> --------- Signed-off-by: Pavan Naregundi <pnaregundi@marvell.com>
18 lines
761 B
Makefile
18 lines
761 B
Makefile
# sonic marvell one image installer
|
|
|
|
SONIC_ONE_IMAGE = sonic-marvell-arm64.bin
|
|
$(SONIC_ONE_IMAGE)_MACHINE = marvell-arm64
|
|
$(SONIC_ONE_IMAGE)_IMAGE_TYPE = onie
|
|
$(SONIC_ONE_IMAGE)_INSTALLS += $(SYSTEMD_SONIC_GENERATOR)
|
|
$(SONIC_ONE_IMAGE)_INSTALLS += $(MRVL_PRESTERA_DEB)
|
|
$(SONIC_ONE_IMAGE)_LAZY_INSTALLS += $(NOKIA_7215_PLATFORM) \
|
|
$(AC5X_RD98DX35xx_PLATFORM) \
|
|
$(AC5X_RD98DX35xxCN9131_PLATFORM)
|
|
ifeq ($(INSTALL_DEBUG_TOOLS),y)
|
|
$(SONIC_ONE_IMAGE)_DOCKERS += $(SONIC_INSTALL_DOCKER_DBG_IMAGES)
|
|
$(SONIC_ONE_IMAGE)_DOCKERS += $(filter-out $(patsubst %-$(DBG_IMAGE_MARK).gz,%.gz, $(SONIC_INSTALL_DOCKER_DBG_IMAGES)), $(SONIC_INSTALL_DOCKER_IMAGES))
|
|
else
|
|
$(SONIC_ONE_IMAGE)_DOCKERS = $(SONIC_INSTALL_DOCKER_IMAGES)
|
|
endif
|
|
SONIC_INSTALLERS += $(SONIC_ONE_IMAGE)
|