-
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.
* Update arista drivers submodule * Ignore the possible timestamp warning in tar extraction * Add verbosity toggle to boot0 Console logging is slow because of the 9600 baud rate. Some time can be saved by decreasing the console verbosity. * Add hook mechanism in boot0. Support additional features in boot0 via hooks. Hooks are unpacked and executed at post-install or pre-exec time. * Fix 7170 sensors.conf file Fix critical temperature settings for MAX6658 sensors * Fix the random swap of storage devices For arista 7050 switches running with linux 4.9, it is likely the device name of flash drive (/dev/sda) and usb (/dev/sdb) randomly swap in kernel booting, depending on which one is ready first. It breaks the expectation that flash will be mounted as root by setting root=/dev/sda1. This patch will correct ROOT to flash device refering to the path under block_flash. * Fix 7170 fancontrol * Do not remove aquota.user file in boot0 This file is a filesystem protected file used by EOS. It can be simply removed and will make the SONiC installation failed if not skipped.
- Loading branch information
Showing
6 changed files
with
149 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
INTERVAL=5 | ||
DEVPATH=hwmon1=devices/pci0000:00/0000:00:1c.0/0000:06:00.0/i2c-8/8-004c hwmon3=devices/pci0000:ff/0000:ff:0b.3/i2c-93/93-0060 | ||
DEVNAME=hwmon1=max6658 hwmon3=rook_cpld | ||
FCTEMPS=hwmon3/pwm4=hwmon1/temp1_input hwmon3/pwm3=hwmon1/temp1_input hwmon3/pwm2=hwmon1/temp1_input hwmon3/pwm1=hwmon1/temp1_input | ||
FCFANS=hwmon3/pwm4=hwmon3/fan4_input hwmon3/pwm3=hwmon3/fan3_input hwmon3/pwm2=hwmon3/fan2_input hwmon3/pwm1=hwmon3/fan1_input | ||
MINTEMP=hwmon3/pwm4=50 hwmon3/pwm3=50 hwmon3/pwm2=50 hwmon3/pwm1=50 | ||
MINPWM=hwmon3/pwm4=128 hwmon3/pwm3=128 hwmon3/pwm2=128 hwmon3/pwm1=128 | ||
MAXTEMP=hwmon3/pwm4=60 hwmon3/pwm3=60 hwmon3/pwm2=60 hwmon3/pwm1=60 | ||
MINSTART=hwmon3/pwm4=128 hwmon3/pwm3=128 hwmon3/pwm2=128 hwmon3/pwm1=128 | ||
MINSTOP=hwmon3/pwm4=128 hwmon3/pwm3=128 hwmon3/pwm2=128 hwmon3/pwm1=128 | ||
DEVPATH=hwmon2=devices/pci0000:00/0000:00:1c.0/0000:06:00.0/i2c-8/8-004c hwmon4=devices/pci0000:ff/0000:ff:0b.3/i2c-93/93-0060 | ||
DEVNAME=hwmon2=max6658 hwmon4=rook_cpld | ||
FCTEMPS=hwmon4/pwm4=hwmon2/temp1_input hwmon4/pwm3=hwmon2/temp1_input hwmon4/pwm2=hwmon2/temp1_input hwmon4/pwm1=hwmon2/temp1_input | ||
FCFANS=hwmon4/pwm4=hwmon4/fan4_input hwmon4/pwm3=hwmon4/fan3_input hwmon4/pwm2=hwmon4/fan2_input hwmon4/pwm1=hwmon4/fan1_input | ||
MINTEMP=hwmon4/pwm4=50 hwmon4/pwm3=50 hwmon4/pwm2=50 hwmon4/pwm1=50 | ||
MINPWM=hwmon4/pwm4=128 hwmon4/pwm3=128 hwmon4/pwm2=128 hwmon4/pwm1=128 | ||
MAXTEMP=hwmon4/pwm4=60 hwmon4/pwm3=60 hwmon4/pwm2=60 hwmon4/pwm1=60 | ||
MINSTART=hwmon4/pwm4=128 hwmon4/pwm3=128 hwmon4/pwm2=128 hwmon4/pwm1=128 | ||
MINSTOP=hwmon4/pwm4=128 hwmon4/pwm3=128 hwmon4/pwm2=128 hwmon4/pwm1=128 |
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
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
Submodule sonic-platform-modules-arista
updated
18 files
+2 −0 | .gitignore | |
+133 −4 | arista/components/dpm.py | |
+19 −0 | arista/components/fan.py | |
+38 −16 | arista/components/scd.py | |
+8 −0 | arista/core/component.py | |
+3 −0 | arista/core/driver.py | |
+29 −1 | arista/core/inventory.py | |
+6 −2 | arista/platforms/a7050qx32.py | |
+6 −2 | arista/platforms/a7050qx32s.py | |
+7 −2 | arista/platforms/a7060cx32s.py | |
+15 −6 | arista/platforms/a717064c.py | |
+7 −2 | arista/platforms/a7260cx364.py | |
+6 −5 | arista/utils/sonic_sfputil.py | |
+1 −1 | confs/sonic-platform-arista.service | |
+23 −0 | src/crow-fan-driver.c | |
+13 −13 | src/scd-hwmon.c | |
+2 −0 | tests/all-platforms.sh | |
+14 −1 | utils/arista |
Submodule sonic-platform-modules-arista
updated
18 files
+2 −0 | .gitignore | |
+133 −4 | arista/components/dpm.py | |
+19 −0 | arista/components/fan.py | |
+38 −16 | arista/components/scd.py | |
+8 −0 | arista/core/component.py | |
+3 −0 | arista/core/driver.py | |
+29 −1 | arista/core/inventory.py | |
+6 −2 | arista/platforms/a7050qx32.py | |
+6 −2 | arista/platforms/a7050qx32s.py | |
+7 −2 | arista/platforms/a7060cx32s.py | |
+15 −6 | arista/platforms/a717064c.py | |
+7 −2 | arista/platforms/a7260cx364.py | |
+6 −5 | arista/utils/sonic_sfputil.py | |
+1 −1 | confs/sonic-platform-arista.service | |
+23 −0 | src/crow-fan-driver.c | |
+13 −13 | src/scd-hwmon.c | |
+2 −0 | tests/all-platforms.sh | |
+14 −1 | utils/arista |