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
20 lines
953 B
Makefile
20 lines
953 B
Makefile
# sonic-thermalctld (SONiC Thermal control daemon) Debian package
|
|
|
|
# SONIC_THERMALCTLD_PY2 package
|
|
|
|
SONIC_THERMALCTLD_PY2 = sonic_thermalctld-1.0-py2-none-any.whl
|
|
$(SONIC_THERMALCTLD_PY2)_SRC_PATH = $(SRC_PATH)/sonic-platform-daemons/sonic-thermalctld
|
|
$(SONIC_THERMALCTLD_PY2)_DEPENDS = $(SONIC_PY_COMMON_PY2) $(SONIC_PLATFORM_COMMON_PY2)
|
|
$(SONIC_THERMALCTLD_PY2)_DEBS_DEPENDS = $(LIBSWSSCOMMON) $(PYTHON_SWSSCOMMON)
|
|
$(SONIC_THERMALCTLD_PY2)_PYTHON_VERSION = 2
|
|
SONIC_PYTHON_WHEELS += $(SONIC_THERMALCTLD_PY2)
|
|
|
|
# SONIC_THERMALCTLD_PY3 package
|
|
|
|
SONIC_THERMALCTLD_PY3 = sonic_thermalctld-1.0-py3-none-any.whl
|
|
$(SONIC_THERMALCTLD_PY3)_SRC_PATH = $(SRC_PATH)/sonic-platform-daemons/sonic-thermalctld
|
|
$(SONIC_THERMALCTLD_PY3)_DEPENDS = $(SONIC_PY_COMMON_PY3) $(SONIC_PLATFORM_COMMON_PY3)
|
|
$(SONIC_THERMALCTLD_PY3)_DEBS_DEPENDS = $(LIBSWSSCOMMON) $(PYTHON3_SWSSCOMMON)
|
|
$(SONIC_THERMALCTLD_PY3)_PYTHON_VERSION = 3
|
|
SONIC_PYTHON_WHEELS += $(SONIC_THERMALCTLD_PY3)
|