-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[202012][Arista] Update platform library submodules (#8339)
This PR only contains backports from master Fix leak discovered on master, though 202012 is not affected it's better to have the fix (fixes [master] thermalctld leak on Arista devices makes them unreachable when memory is exhausted #7515) Fix EepromDecoderimplementation in the platform API (fixes syseepromd crashing repeatedly on SONiC.20201231.02 #8263) Fix Mineral platform definition and configuration Fix build issues in environments where /proc is not mounted/restricted (fixes PLATFORM=broadcom fails arista "ReloadCauseManagerTest" first time #7800) Fix some pytest issues Add sfp-eeprom C API and also mount it in pmon
- Loading branch information
Showing
7 changed files
with
93 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Arista-7170-32CD-C32 t1 | ||
Arista-7170-32C-C32 t1 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# libsensors configuration file for DCS-7170-32C | ||
# ------------------------------------------------ | ||
|
||
bus "i2c-6" "SCD 0000:06:00.0 SMBus master 0 bus 5" | ||
bus "i2c-7" "SCD 0000:06:00.0 SMBus master 0 bus 6" | ||
bus "i2c-8" "SCD 0000:06:00.0 SMBus master 0 bus 7" | ||
bus "i2c-81" "SCD 0000:ff:0b.3 SMBus master 0 bus 0" | ||
|
||
chip "max6658-i2c-8-4c" | ||
label temp1 "Temp sensor near ASIC" | ||
|
||
set temp1_max 100 | ||
set temp1_crit 110 | ||
set temp1_min -55 | ||
|
||
set temp2_max 100 | ||
set temp2_crit 110 | ||
set temp2_min -55 | ||
ignore temp2 | ||
|
||
chip "pmbus-i2c-6-58" | ||
label temp1 "PSU1 primary hotspot temp" | ||
label temp2 "PSU1 inlet temp" | ||
label temp3 "PSU1 exhaust temp" | ||
|
||
# setting maximum and critical thresholds is not supported for this psu | ||
# fault and warning limits defined internally by hardware | ||
|
||
ignore fan2 | ||
ignore fan3 | ||
|
||
chip "pmbus-i2c-7-58" | ||
label temp1 "PSU2 primary hotspot temp" | ||
label temp2 "PSU2 inlet temp" | ||
label temp3 "PSU2 exhaust temp" | ||
|
||
# setting maximum and critical thresholds is not supported for this psu | ||
# fault and warning limits defined internally by hardware | ||
|
||
ignore fan2 | ||
ignore fan3 | ||
|
||
chip "max6658-i2c-81-4c" | ||
label temp1 "Rear air temp1" | ||
label temp2 "Rear air temp2" | ||
|
||
set temp1_max 70 | ||
set temp1_crit 80 | ||
set temp1_min -55 | ||
set temp2_max 70 | ||
set temp2_crit 80 | ||
set temp2_min -55 | ||
|
||
chip "lm73-i2c-8-4a" | ||
label temp1 "Front air temp" | ||
|
||
set temp1_max 65 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
../x86_64-arista_7170_64c/sensors.conf | ||
../x86_64-arista_7170_32c/sensors.conf |
Submodule sonic-platform-modules-arista
updated
19 files
+3 −0 | .gitignore | |
+13 −3 | Makefile | |
+8 −4 | arista/components/scd.py | |
+3 −0 | arista/core/driver.py | |
+9 −9 | arista/core/tests/cause.py | |
+13 −7 | arista/core/utils.py | |
+9 −2 | arista/drivers/scd/driver.py | |
+2 −0 | arista/drivers/sysfs.py | |
+7 −1 | arista/libs/procfs.py | |
+3 −3 | arista/platforms/alhambra.py | |
+6 −5 | arista/platforms/cpu/rook.py | |
+13 −1 | arista/platforms/mineral.py | |
+8 −10 | arista/utils/sonic_platform/chassis.py | |
+31 −3 | arista/utils/sonic_platform/eeprom.py | |
+4 −1 | debian/rules | |
+29 −0 | lib/Makefile | |
+124 −0 | lib/sfp-eeprom-info-c-gen.py | |
+296 −0 | lib/sfp-eeprom.c | |
+25 −0 | lib/sfp-eeprom.h |
Submodule sonic-platform-modules-arista
updated
19 files
+3 −0 | .gitignore | |
+13 −3 | Makefile | |
+8 −4 | arista/components/scd.py | |
+3 −0 | arista/core/driver.py | |
+9 −9 | arista/core/tests/cause.py | |
+13 −7 | arista/core/utils.py | |
+9 −2 | arista/drivers/scd/driver.py | |
+2 −0 | arista/drivers/sysfs.py | |
+7 −1 | arista/libs/procfs.py | |
+3 −3 | arista/platforms/alhambra.py | |
+6 −5 | arista/platforms/cpu/rook.py | |
+13 −1 | arista/platforms/mineral.py | |
+8 −10 | arista/utils/sonic_platform/chassis.py | |
+31 −3 | arista/utils/sonic_platform/eeprom.py | |
+4 −1 | debian/rules | |
+29 −0 | lib/Makefile | |
+124 −0 | lib/sfp-eeprom-info-c-gen.py | |
+296 −0 | lib/sfp-eeprom.c | |
+25 −0 | lib/sfp-eeprom.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters