[202205] [Mellanox] Update SDK/FW to 4.5.4318/2010.4316 and SAI to 2205.25.1.2 (#16590)
Update SDK/FW to 4.5.4318/2010.4316 and SAI to 2205.25.1.2 in order to include listed below fixes. SDK/FW In some cases, when an ACL has two or more rules with a similar key, modifying/removing one of the rules may cause modification/removal of one of the similar-key rules, instead of the requested rule. Using module SPQCELRCDFB when connected to a 3rd party switch, there may either be no link or a very long link up time (~2 minutes). In some case warmboot from 201911 to 202205 might result in dataplane traffic loss When upgrade SONiC version using warm boot from version 201911/202012 to newer version, then doing cold boot back to older version and upgrade again to newer one warm boot might be fail. SAI Added support for dynamic ordered ECMP group (SAI_NEXT_GROUP_TYPE_DYNAMIC_ORDERED_ECMP) "store and forward" KV was added Added Support for IPV6 link local debug counters --------- Signed-off-by: Volodymyr Samotiy <volodymyrs@nvidia.com>
This commit is contained in:
parent
855c76d541
commit
6f18a2335b
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -73,9 +73,6 @@
|
||||
[submodule "src/scapy"]
|
||||
path = src/scapy
|
||||
url = https://github.com/secdev/scapy.git
|
||||
[submodule "platform/mellanox/mlnx-sai/SAI-Implementation"]
|
||||
path = platform/mellanox/mlnx-sai/SAI-Implementation
|
||||
url = https://github.com/Mellanox/SAI-Implementation
|
||||
[submodule "src/sonic-mgmt-framework"]
|
||||
path = src/sonic-mgmt-framework
|
||||
url = https://github.com/sonic-net/sonic-mgmt-framework
|
||||
|
2
platform/mellanox/.gitignore
vendored
2
platform/mellanox/.gitignore
vendored
@ -1,6 +1,4 @@
|
||||
# Subdirectories
|
||||
mlnx-sai/*
|
||||
!mlnx-sai/Makefile
|
||||
hw-management/*
|
||||
!hw-management/Makefile
|
||||
!hw-management/*.patch
|
||||
|
@ -25,24 +25,24 @@ SIMX_VERSION = 5.1-1065
|
||||
|
||||
FW_FROM_URL = y
|
||||
|
||||
MLNX_FW_ASSETS_RELEASE_TAG = fw-2010.4204
|
||||
MLNX_FW_ASSETS_RELEASE_TAG = fw-2010.4316
|
||||
MLNX_FW_ASSETS_URL = $(MLNX_ASSETS_GITHUB_URL)/releases/download/$(MLNX_FW_ASSETS_RELEASE_TAG)
|
||||
|
||||
ifeq ($(MLNX_FW_BASE_URL), )
|
||||
MLNX_FW_BASE_URL = $(MLNX_FW_ASSETS_URL)
|
||||
endif
|
||||
|
||||
MLNX_SPC_FW_VERSION = 13.2010.4204
|
||||
MLNX_SPC_FW_VERSION = 13.2010.4316
|
||||
MLNX_SPC_FW_FILE = fw-SPC-rel-$(subst .,_,$(MLNX_SPC_FW_VERSION))-EVB.mfa
|
||||
$(MLNX_SPC_FW_FILE)_PATH = $(MLNX_FW_BASE_PATH)
|
||||
$(MLNX_SPC_FW_FILE)_URL = $(MLNX_FW_BASE_URL)/$(MLNX_SPC_FW_FILE)
|
||||
|
||||
MLNX_SPC2_FW_VERSION = 29.2010.4204
|
||||
MLNX_SPC2_FW_VERSION = 29.2010.4316
|
||||
MLNX_SPC2_FW_FILE = fw-SPC2-rel-$(subst .,_,$(MLNX_SPC2_FW_VERSION))-EVB.mfa
|
||||
$(MLNX_SPC2_FW_FILE)_PATH = $(MLNX_FW_BASE_PATH)
|
||||
$(MLNX_SPC2_FW_FILE)_URL = $(MLNX_FW_BASE_URL)/$(MLNX_SPC2_FW_FILE)
|
||||
|
||||
MLNX_SPC3_FW_VERSION = 30.2010.4204
|
||||
MLNX_SPC3_FW_VERSION = 30.2010.4316
|
||||
MLNX_SPC3_FW_FILE = fw-SPC3-rel-$(subst .,_,$(MLNX_SPC3_FW_VERSION))-EVB.mfa
|
||||
$(MLNX_SPC3_FW_FILE)_PATH = $(MLNX_FW_BASE_PATH)
|
||||
$(MLNX_SPC3_FW_FILE)_URL = $(MLNX_FW_BASE_URL)/$(MLNX_SPC3_FW_FILE)
|
||||
|
@ -1,8 +1,22 @@
|
||||
# Mellanox SAI
|
||||
|
||||
MLNX_SAI_VERSION = SAIBuild2205.24.0.2
|
||||
MLNX_SAI_VERSION = SAIBuild2205.25.1.2
|
||||
MLNX_SAI_ASSETS_VERSION = 2205.25.1.2
|
||||
MLNX_SAI_ASSETS_GITHUB_URL = https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins
|
||||
MLNX_SAI_ASSETS_RELEASE_TAG = sai-$(MLNX_SAI_ASSETS_VERSION)-$(BLDENV)-$(CONFIGURED_ARCH)
|
||||
MLNX_SAI_ASSETS_URL = $(MLNX_ASSETS_GITHUB_URL)/releases/download/$(MLNX_SAI_ASSETS_RELEASE_TAG)
|
||||
MLNX_SAI_DEB_VERSION = $(subst -,.,$(subst _,.,$(MLNX_SAI_VERSION)))
|
||||
|
||||
export MLNX_SAI_VERSION
|
||||
# Place here URL where SAI sources exist
|
||||
MLNX_SAI_SOURCE_BASE_URL =
|
||||
|
||||
ifneq ($(MLNX_SAI_SOURCE_BASE_URL), )
|
||||
SAI_FROM_SRC = y
|
||||
else
|
||||
SAI_FROM_SRC = n
|
||||
endif
|
||||
|
||||
export MLNX_SAI_VERSION MLNX_SAI_SOURCE_BASE_URL
|
||||
|
||||
MLNX_SAI = mlnx-sai_1.mlnx.$(MLNX_SAI_VERSION)_amd64.deb
|
||||
$(MLNX_SAI)_SRC_PATH = $(PLATFORM_PATH)/mlnx-sai
|
||||
@ -11,4 +25,16 @@ $(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)))
|
||||
|
||||
define make_url
|
||||
$(1)_URL = $(MLNX_SAI_ASSETS_URL)/$(1)
|
||||
|
||||
endef
|
||||
|
||||
$(eval $(foreach deb,$(MLNX_SAI) $(MLNX_SAI_DBGSYM),$(call make_url,$(deb))))
|
||||
|
||||
ifeq ($(SAI_FROM_SRC), y)
|
||||
SONIC_MAKE_DEBS += $(MLNX_SAI)
|
||||
else
|
||||
SONIC_ONLINE_DEBS += $(MLNX_SAI)
|
||||
endif
|
||||
|
@ -6,11 +6,11 @@ MAIN_TARGET = mlnx-sai_1.mlnx.$(MLNX_SAI_VERSION)_amd64.deb
|
||||
DERIVED_TARGETS = mlnx-sai-dbgsym_1.mlnx.$(MLNX_SAI_VERSION)_amd64.deb
|
||||
|
||||
$(addprefix $(DEST)/, $(MAIN_TARGET)): $(DEST)/% :
|
||||
pushd SAI-Implementation
|
||||
rm -rf mlnx_sai
|
||||
wget -c $(MLNX_SAI_SOURCE_BASE_URL)/$(MLNX_SAI_VERSION).tar.gz -O - | tar -xz
|
||||
pushd mlnx_sai
|
||||
|
||||
debuild -e 'make_extra_flags="DEFS=-DACS_OS -DCONFIG_SYSLOG"' -us -uc -d -b
|
||||
popd
|
||||
|
||||
mv $(DERIVED_TARGETS) $* $(DEST)/
|
||||
popd
|
||||
|
@ -1 +0,0 @@
|
||||
Subproject commit 2a6270d763bea7cf80637ff2368cc1927a354bae
|
@ -14,7 +14,7 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
MLNX_SDK_VERSION = 4.5.4206
|
||||
MLNX_SDK_VERSION = 4.5.4318
|
||||
MLNX_SDK_ISSU_VERSION = 101
|
||||
|
||||
MLNX_ASSETS_GITHUB_URL = https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins
|
||||
|
Loading…
Reference in New Issue
Block a user