fbd4e452c7
Update Innovium configs + Add new platforms supporting Innovium chips
13 lines
413 B
Python
Executable File
13 lines
413 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
try:
|
|
from sonic_eeprom import eeprom_tlvinfo
|
|
except ImportError, e:
|
|
raise ImportError (str(e) + "- required module not found")
|
|
|
|
class board(eeprom_tlvinfo.TlvInfoDecoder):
|
|
_TLV_INFO_MAX_LEN = 256
|
|
def __init__(self, name, path, cpld_root, ro):
|
|
self.eeprom_path = "/sys/bus/i2c/devices/0-0056/eeprom"
|
|
super(board, self).__init__(self.eeprom_path, 0, '', True)
|