fb4cd63ac5
* Add Ingrasys S8900 series platform * Add Ingrasys S8900-54XC platform driver * Add Ingrasys S8900-64XC platform driver * Reorganized Ingrasys debian package * Move fancontrol config to device-specific file directory * QSFP transceivers init on S9100-32X * Update Thermal Policy in sensors.conf * Add new Ingrasys S8900 series platform for docker-orchagent/orchagent.sh Signed-off-by: Wade He <chihen.he@gmail.com>
24 lines
765 B
Python
24 lines
765 B
Python
#!/usr/bin/env python
|
|
|
|
#############################################################################
|
|
# Dell Z9100
|
|
#
|
|
# 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):
|
|
self.eeprom_path = "/sys/class/i2c-adapter/i2c-17/17-0054/eeprom"
|
|
super(board, self).__init__(self.eeprom_path, 0, '', True)
|
|
|