df28eceb35
Why I did it Add 6512-32r support for Wistron platform Update sw-to3200k for newer branch How I did it Add code in device and platform folder for 6512-32r Update sw-to3200k code both in device and platform folder How to verify it Install on Wistron device and run command to verify Signed-off-by: RogerChang Roger_Chang@wistron.com
27 lines
694 B
Python
27 lines
694 B
Python
#!/usr/bin/env python
|
|
|
|
try:
|
|
import os
|
|
from sonic_eeprom import eeprom_tlvinfo
|
|
except ImportError as e:
|
|
raise ImportError (str(e) + "- required module not found")
|
|
|
|
def eeprom_check():
|
|
filepath="/sys/bus/i2c/devices/0-0055/eeprom"
|
|
if os.path.isfile(filepath):
|
|
return 1 #now board, 0x56
|
|
else:
|
|
return 0 #now board, 0x57
|
|
|
|
class board(eeprom_tlvinfo.TlvInfoDecoder):
|
|
_TLV_INFO_MAX_LEN = 256
|
|
def __init__(self, name, path, cpld_root, ro):
|
|
ret=eeprom_check()
|
|
if ret==1:
|
|
self.eeprom_path = "/sys/bus/i2c/devices/0-0055/eeprom"
|
|
else:
|
|
pass
|
|
|
|
super(board, self).__init__(self.eeprom_path, 0, '', True)
|
|
|