-
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.
[devices]: Add led plugin for Arista 7060CX-32S and 7260CX3-64 (#945)
* Bump sonic-platform-modules-arista submodule * Allow image specific mount option for containers * Add led plugin for DCS-7060CX-32S * Add led plugin for DCS-7260CX3-64
- Loading branch information
Showing
5 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
device/arista/x86_64-arista_7060_cx32s/plugins/led_control.py
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,6 @@ | ||
try: | ||
import arista.utils.sonic_leds as arista_leds | ||
except ImportError, e: | ||
raise ImportError (str(e) + "- required module not found") | ||
|
||
LedControl = arista_leds.getLedControl() |
6 changes: 6 additions & 0 deletions
6
device/arista/x86_64-arista_7260cx3_64/plugins/led_control.py
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,6 @@ | ||
try: | ||
import arista.utils.sonic_leds as arista_leds | ||
except ImportError, e: | ||
raise ImportError (str(e) + "- required module not found") | ||
|
||
LedControl = arista_leds.getLedControl() |
Submodule sonic-platform-modules-arista
updated
4 files
+2 −0 | src/Makefile | |
+6 −5 | src/crow-fan-driver.c | |
+12 −17 | src/raven-fan-driver.c | |
+6 −5 | src/rook-fan-cpld.c |
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