14 lines
370 B
Python
14 lines
370 B
Python
|
#!/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):
|
||
|
|
||
|
def __init__(self, name, path, cpld_root, ro):
|
||
|
self.eeprom_path = "/etc/sonic/eeprom"
|
||
|
super(board, self).__init__(self.eeprom_path, 0, '', True)
|