2017-02-27 02:13:36 -06:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2017-05-16 10:07:47 -05:00
|
|
|
"""
|
|
|
|
Arista 7050QX-32 eeprom plugin
|
|
|
|
Uses the arista driver library to obtain the TlvInfoDecoder
|
|
|
|
"""
|
2017-02-27 02:13:36 -06:00
|
|
|
|
|
|
|
try:
|
2017-05-16 10:07:47 -05:00
|
|
|
import arista.utils.sonic_eeprom as arista_eeprom
|
2017-02-27 02:13:36 -06:00
|
|
|
except ImportError, e:
|
|
|
|
raise ImportError (str(e) + "- required module not found")
|
|
|
|
|
2017-05-16 10:07:47 -05:00
|
|
|
board = arista_eeprom.getTlvInfoDecoder()
|