d202bf26d7
Fixes #9279 - Why I did it Part of larger effort to move all SONiC systems to bullseye - How I did it 1. Update container makefiles with correct dependencies 2. Update container Dockerfile with correct base image 3. Update container Dockerfile with correct apt dependencies 4. Update any other makefiles with dependencies to remove python2 support 5. Minor changes to support bullseye / python3 - How to verify it Run regression on the switch: 1. Verify PTF community tests work 2. Verify syncd runs and all ports come up / pass traffic 3. Verify all platform tests succeed
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
#
|
|
# Copyright (c) 2016-2022 NVIDIA CORPORATION & AFFILIATES.
|
|
# Apache-2.0
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
# Mellanox SAI
|
|
|
|
MFT_VERSION = 4.18.0
|
|
MFT_REVISION = 106
|
|
|
|
export MFT_VERSION MFT_REVISION
|
|
|
|
MFT = mft_$(MFT_VERSION)-$(MFT_REVISION)_amd64.deb
|
|
$(MFT)_SRC_PATH = $(PLATFORM_PATH)/mft
|
|
SONIC_MAKE_DEBS += $(MFT)
|
|
|
|
$(MFT)_DEPENDS += $(LINUX_HEADERS) $(LINUX_HEADERS_COMMON)
|
|
|
|
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)))
|