2017-07-18 13:21:24 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
# Inventec d7032q28b
|
|
|
|
#
|
|
|
|
# Platform and model specific eeprom subclass, inherits from the base class,
|
|
|
|
# and provides the followings:
|
|
|
|
# - the eeprom format definition
|
|
|
|
# - specific encoder/decoder if there is special need
|
|
|
|
#############################################################################
|
|
|
|
|
|
|
|
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):
|
2017-10-19 15:06:03 -05:00
|
|
|
self.eeprom_path = "/sys/class/i2c-adapter/i2c-0/0-0053/eeprom"
|
2017-07-18 13:21:24 -05:00
|
|
|
super(board, self).__init__(self.eeprom_path, 0, '', True)
|