sonic-buildimage/device/ruijie/x86_64-ruijie_b6510-48vs8cq-r0/plugins/eeprom.py

13 lines
387 B
Python
Raw Normal View History

#!/usr/bin/env python
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 = "/sys/bus/i2c/devices/2-0057/eeprom"
super(board, self).__init__(self.eeprom_path, 0, "", True)