[device/Arista] Add initial support for platform API (#2964)
* Congregate plugin scripts for Arista platforms * Update arista driver submodules Pulls new platform API related changes
This commit is contained in:
parent
4073e8fa64
commit
df063bd78d
1
device/arista/x86_64-arista_7050_qx32/plugins
Symbolic link
1
device/arista/x86_64-arista_7050_qx32/plugins
Symbolic link
@ -0,0 +1 @@
|
||||
../x86_64-arista_common/plugins/
|
@ -1,13 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
"""
|
||||
Arista 7050QX-32 eeprom plugin
|
||||
Uses the arista driver library to obtain the TlvInfoDecoder
|
||||
"""
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_eeprom as arista_eeprom
|
||||
except ImportError, e:
|
||||
raise ImportError (str(e) + "- required module not found")
|
||||
|
||||
board = arista_eeprom.getTlvInfoDecoder()
|
@ -1,6 +0,0 @@
|
||||
try:
|
||||
import arista.utils.sonic_leds as arista_leds
|
||||
except ImportError, e:
|
||||
raise ImportError (str(e) + "- required module not found")
|
||||
|
||||
LedControl = arista_leds.getLedControl()
|
@ -1,12 +0,0 @@
|
||||
# psuutil.py
|
||||
#
|
||||
# Platform-specific PSU interface for SONiC
|
||||
#
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_psu as arista_psuutil
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
|
||||
PsuUtil = arista_psuutil.getPsuUtil()
|
@ -1,12 +0,0 @@
|
||||
# sfputil.py
|
||||
#
|
||||
# Platform-specific SFP transceiver interface for SONiC
|
||||
#
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_sfputil as arista_sfputil
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
|
||||
SfpUtil = arista_sfputil.getSfpUtil()
|
1
device/arista/x86_64-arista_7050_qx32s/plugins
Symbolic link
1
device/arista/x86_64-arista_7050_qx32s/plugins
Symbolic link
@ -0,0 +1 @@
|
||||
../x86_64-arista_common/plugins/
|
@ -1,13 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
"""
|
||||
Arista 7050QX-32S eeprom plugin
|
||||
Uses the arista driver library to obtain the TlvInfoDecoder
|
||||
"""
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_eeprom as arista_eeprom
|
||||
except ImportError, e:
|
||||
raise ImportError (str(e) + "- required module not found")
|
||||
|
||||
board = arista_eeprom.getTlvInfoDecoder()
|
@ -1,6 +0,0 @@
|
||||
try:
|
||||
import arista.utils.sonic_leds as arista_leds
|
||||
except ImportError, e:
|
||||
raise ImportError (str(e) + "- required module not found")
|
||||
|
||||
LedControl = arista_leds.getLedControl()
|
@ -1,12 +0,0 @@
|
||||
# psuutil.py
|
||||
#
|
||||
# Platform-specific PSU interface for SONiC
|
||||
#
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_psu as arista_psuutil
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
|
||||
PsuUtil = arista_psuutil.getPsuUtil()
|
@ -1,12 +0,0 @@
|
||||
# sfputil.py
|
||||
#
|
||||
# Platform-specific SFP transceiver interface for SONiC
|
||||
#
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_sfputil as arista_sfputil
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
|
||||
SfpUtil = arista_sfputil.getSfpUtil()
|
1
device/arista/x86_64-arista_7060_cx32s/plugins
Symbolic link
1
device/arista/x86_64-arista_7060_cx32s/plugins
Symbolic link
@ -0,0 +1 @@
|
||||
../x86_64-arista_common/plugins/
|
@ -1,13 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
"""
|
||||
Arista 7060CX-32S eeprom plugin
|
||||
Uses the arista driver library to obtain the TlvInfoDecoder
|
||||
"""
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_eeprom as arista_eeprom
|
||||
except ImportError, e:
|
||||
raise ImportError (str(e) + "- required module not found")
|
||||
|
||||
board = arista_eeprom.getTlvInfoDecoder()
|
@ -1,6 +0,0 @@
|
||||
try:
|
||||
import arista.utils.sonic_leds as arista_leds
|
||||
except ImportError, e:
|
||||
raise ImportError (str(e) + "- required module not found")
|
||||
|
||||
LedControl = arista_leds.getLedControl()
|
@ -1,12 +0,0 @@
|
||||
# psuutil.py
|
||||
#
|
||||
# Platform-specific PSU interface for SONiC
|
||||
#
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_psu as arista_psuutil
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
|
||||
PsuUtil = arista_psuutil.getPsuUtil()
|
@ -1,12 +0,0 @@
|
||||
# sfputil.py
|
||||
#
|
||||
# Platform-specific SFP transceiver interface for SONiC
|
||||
#
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_sfputil as arista_sfputil
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
|
||||
SfpUtil = arista_sfputil.getSfpUtil()
|
1
device/arista/x86_64-arista_7060px4_32/plugins
Symbolic link
1
device/arista/x86_64-arista_7060px4_32/plugins
Symbolic link
@ -0,0 +1 @@
|
||||
../x86_64-arista_common/plugins/
|
1
device/arista/x86_64-arista_7170_64c/plugins
Symbolic link
1
device/arista/x86_64-arista_7170_64c/plugins
Symbolic link
@ -0,0 +1 @@
|
||||
../x86_64-arista_common/plugins/
|
@ -1,8 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_eeprom as arista_eeprom
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
board = arista_eeprom.getTlvInfoDecoder()
|
@ -1,8 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_leds as arista_leds
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
LedControl = arista_leds.getLedControl()
|
@ -1,12 +0,0 @@
|
||||
# psuutil.py
|
||||
#
|
||||
# Platform-specific PSU interface for SONiC
|
||||
#
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_psu as arista_psuutil
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
|
||||
PsuUtil = arista_psuutil.getPsuUtil()
|
@ -1,8 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_sfputil as arista_sfputil
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
SfpUtil = arista_sfputil.getSfpUtil()
|
1
device/arista/x86_64-arista_7260cx3_64/plugins
Symbolic link
1
device/arista/x86_64-arista_7260cx3_64/plugins
Symbolic link
@ -0,0 +1 @@
|
||||
../x86_64-arista_common/plugins/
|
@ -1,13 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
"""
|
||||
Arista 7260CX3-64 eeprom plugin
|
||||
Uses the arista driver library to obtain the TlvInfoDecoder
|
||||
"""
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_eeprom as arista_eeprom
|
||||
except ImportError, e:
|
||||
raise ImportError (str(e) + "- required module not found")
|
||||
|
||||
board = arista_eeprom.getTlvInfoDecoder()
|
@ -1,6 +0,0 @@
|
||||
try:
|
||||
import arista.utils.sonic_leds as arista_leds
|
||||
except ImportError, e:
|
||||
raise ImportError (str(e) + "- required module not found")
|
||||
|
||||
LedControl = arista_leds.getLedControl()
|
@ -1,12 +0,0 @@
|
||||
# psuutil.py
|
||||
#
|
||||
# Platform-specific PSU interface for SONiC
|
||||
#
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_psu as arista_psuutil
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
|
||||
PsuUtil = arista_psuutil.getPsuUtil()
|
@ -1,12 +0,0 @@
|
||||
# sfputil.py
|
||||
#
|
||||
# Platform-specific SFP transceiver interface for SONiC
|
||||
#
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_sfputil as arista_sfputil
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
|
||||
SfpUtil = arista_sfputil.getSfpUtil()
|
1
device/arista/x86_64-arista_7280cr3_32p4/plugins
Symbolic link
1
device/arista/x86_64-arista_7280cr3_32p4/plugins
Symbolic link
@ -0,0 +1 @@
|
||||
../x86_64-arista_common/plugins/
|
@ -1,8 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_eeprom as arista_eeprom
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
board = arista_eeprom.getTlvInfoDecoder()
|
@ -1,8 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_leds as arista_leds
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
LedControl = arista_leds.getLedControl()
|
@ -1,8 +0,0 @@
|
||||
# psuutil.py
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_psu as arista_psuutil
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
PsuUtil = arista_psuutil.getPsuUtil()
|
@ -1,8 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_sfputil as arista_sfputil
|
||||
except ImportError as e:
|
||||
raise ImportError("%s - required module not found" % str(e))
|
||||
|
||||
SfpUtil = arista_sfputil.getSfpUtil()
|
@ -1,5 +1,10 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
#
|
||||
# Arista eeprom processing for SONiC
|
||||
# Uses the arista driver library to obtain the TlvInfoDecoder
|
||||
#
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_eeprom as arista_eeprom
|
||||
except ImportError as e:
|
@ -1,3 +1,9 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
#
|
||||
# Arista LED controls for SONiC
|
||||
#
|
||||
|
||||
try:
|
||||
import arista.utils.sonic_leds as arista_leds
|
||||
except ImportError as e:
|
@ -1,6 +1,7 @@
|
||||
# psuutil.py
|
||||
#!/usr/bin/env python
|
||||
|
||||
#
|
||||
# Platform-specific PSU interface for SONiC
|
||||
# Arista PSU interface for SONiC
|
||||
#
|
||||
|
||||
try:
|
@ -1,6 +1,7 @@
|
||||
# sfputil.py
|
||||
#!/usr/bin/env python
|
||||
|
||||
#
|
||||
# Platform-specific SFP transceiver interface for SONiC
|
||||
# Arista SFP transceiver interface for SONiC
|
||||
#
|
||||
|
||||
try:
|
@ -1 +1 @@
|
||||
Subproject commit 0ed1df5a7d6c88319ce41b10ce604c2727afab69
|
||||
Subproject commit 7b7c79ee463b43e570c48915215cdbf6ec250225
|
@ -1 +1 @@
|
||||
Subproject commit 0ed1df5a7d6c88319ce41b10ce604c2727afab69
|
||||
Subproject commit 7b7c79ee463b43e570c48915215cdbf6ec250225
|
Reference in New Issue
Block a user