Skip to content

Commit

Permalink
[platform]: Add EEPROM script for SYS EEPROM on S6100 (#852)
Browse files Browse the repository at this point in the history
  • Loading branch information
padmanarayana authored and lguohan committed Aug 1, 2017
1 parent 175b952 commit 11f0802
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions device/dell/x86_64-dell_s6100_c2538-r0/plugins/eeprom.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env python

#############################################################################
# Dell S6100
#
# 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-2/2-0050/eeprom"
super(board, self).__init__(self.eeprom_path, 0, '', True)

0 comments on commit 11f0802

Please sign in to comment.