[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:
Samuel Angebault 2019-06-07 09:01:09 -07:00 committed by lguohan
parent 4073e8fa64
commit df063bd78d
37 changed files with 26 additions and 246 deletions

View File

@ -0,0 +1 @@
../x86_64-arista_common/plugins/

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -0,0 +1 @@
../x86_64-arista_common/plugins/

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -0,0 +1 @@
../x86_64-arista_common/plugins/

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -0,0 +1 @@
../x86_64-arista_common/plugins/

View File

@ -0,0 +1 @@
../x86_64-arista_common/plugins/

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -0,0 +1 @@
../x86_64-arista_common/plugins/

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -0,0 +1 @@
../x86_64-arista_common/plugins/

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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:

View File

@ -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:

View File

@ -1,6 +1,7 @@
# psuutil.py
#!/usr/bin/env python
#
# Platform-specific PSU interface for SONiC
# Arista PSU interface for SONiC
#
try:

View File

@ -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