sonic-buildimage/device/centec/x86_64-ew_es6220_x48q2h4-r0/plugins/eeprom.py
2020-04-17 00:38:48 -07:00

34 lines
1.0 KiB
Python

#!/usr/bin/env python
#############################################################################
# EmbedWay
#
# 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:
import exceptions
import binascii
import time
import optparse
import warnings
import os
import sys
from sonic_eeprom import eeprom_base
from sonic_eeprom import eeprom_tlvinfo
import subprocess
except ImportError, e:
raise ImportError (str(e) + "- required module not found")
class board(eeprom_tlvinfo.TlvInfoDecoder):
def __init__(self, name, path, cpld_root, ro):
#output = os.popen('i2cdetect -l | grep CP')
#a=output.read()
#b=a[4]
self.eeprom_path = "/home/admin/eeprom.bin"
super(board, self).__init__(self.eeprom_path, 0, '', True)