196fcffb6f
- Why I did it New release of MFT has the following changelog / RN Fixed an issue that resulted in getting MVPD read errors from the mlxfwmanager during fast reboot. Fixed mlxuptime sometimes generating a time less than previous due the wrong frequency calculation - How I did it Update makefile pointer to new version. - How to verify it Manually tested on all Mellanox platforms.
18 lines
511 B
Makefile
18 lines
511 B
Makefile
# Mellanox SAI
|
|
|
|
MFT_VERSION = 4.17.0
|
|
MFT_REVISION = 106
|
|
|
|
export MFT_VERSION MFT_REVISION
|
|
|
|
MFT = mft_$(MFT_VERSION)-$(MFT_REVISION)_amd64.deb
|
|
$(MFT)_SRC_PATH = $(PLATFORM_PATH)/mft
|
|
$(MFT)_DEPENDS += $(LINUX_HEADERS) $(LINUX_HEADERS_COMMON)
|
|
SONIC_MAKE_DEBS += $(MFT)
|
|
|
|
KERNEL_MFT = kernel-mft-dkms-modules-$(KVERSION)_$(MFT_VERSION)_amd64.deb
|
|
$(eval $(call add_derived_package,$(MFT),$(KERNEL_MFT)))
|
|
|
|
MFT_OEM = mft-oem_$(MFT_VERSION)-$(MFT_REVISION)_amd64.deb
|
|
$(eval $(call add_derived_package,$(MFT),$(MFT_OEM)))
|