88af7f625a
* [platform/hwsku] Added Marvell Armhf 32 bit ET6448M 52x Board 48x1G and 4x10G Management switch Signed-off-by: Antony Rheneus <arheneus@marvell.com>
14 lines
370 B
Python
14 lines
370 B
Python
#!/usr/bin/env python
|
|
|
|
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 = "/etc/sonic/eeprom"
|
|
super(board, self).__init__(self.eeprom_path, 0, '', True)
|