sonic-buildimage/device/fs/arm64-fs_s5800_48t4s-r0/plugins/eeprom.py

23 lines
735 B
Python
Raw Normal View History

#!/usr/bin/env python
#############################################################################
# FS S5800-48T4S
#
# 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 as 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 = "/dev/mtd3"
super(board, self).__init__(self.eeprom_path, 0, '', True)