ce7abad3ba
- Why I did it Advance to new Nvidia SAI release with the following changes: New features: - Align with new SDK/FW version 4.5.1006 and above and in parallel to existing used SDK/FW bundle - Implement timestamp and egress_queue_index hostif packet attributes. Bugs fixes: - Fix compilation issues with gcc10 - Fix return code for buffer overflow for query enum values and query statistics capabilities - Reduce verbosity of print in case packet ingress on invalid port - Fix mirror Qos settings - How I did it Updated SAI version and submodule pointer - How to verify it Run regression tests from sonic-mgmt Signed-off-by: Volodymyr Samotiy <volodymyrs@nvidia.com>
15 lines
513 B
Makefile
15 lines
513 B
Makefile
# Mellanox SAI
|
|
|
|
MLNX_SAI_VERSION = SAIRel1.19.4
|
|
|
|
export MLNX_SAI_VERSION
|
|
|
|
MLNX_SAI = mlnx-sai_1.mlnx.$(MLNX_SAI_VERSION)_amd64.deb
|
|
$(MLNX_SAI)_SRC_PATH = $(PLATFORM_PATH)/mlnx-sai
|
|
$(MLNX_SAI)_DEPENDS += $(MLNX_SDK_DEBS)
|
|
$(MLNX_SAI)_RDEPENDS += $(MLNX_SDK_RDEBS) $(MLNX_SDK_DEBS)
|
|
$(eval $(call add_conflict_package,$(MLNX_SAI),$(LIBSAIVS_DEV)))
|
|
MLNX_SAI_DBGSYM = mlnx-sai-dbgsym_1.mlnx.$(MLNX_SAI_VERSION)_amd64.deb
|
|
$(eval $(call add_derived_package,$(MLNX_SAI),$(MLNX_SAI_DBGSYM)))
|
|
SONIC_MAKE_DEBS += $(MLNX_SAI)
|