sonic-buildimage/device/marvell/x86_64-marvell_db98cx8580_16cd-r0/plugins/eeprom.py

14 lines
370 B
Python
Raw Normal View History

#!/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)