Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
acs-utilities (0.1) UNRELEASED; urgency=low
sonic-utilities (0.1) UNRELEASED; urgency=low

* Initial release. (Closes: #XXXXXX)

Expand Down
4 changes: 2 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Source: acs-utilities
Source: sonic-utilities
Maintainer: Shuotian Cheng <[email protected]>
Section: misc
Priority: optional
Standards-Version: 0.1
Build-Depends: debhelper (>=9), python (>=2.7.9)

Package: acs-utilities
Package: sonic-utilities
Architecture: amd64
Depends: ${misc:Depends}, python-tabulate, psmisc, grub2-common
Description: collection of utilities
Expand Down
Empty file modified debian/rules
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion ssw/ACS-MSN2700/bin/eeprom.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ class board(eeprom_tlvinfo.TlvInfoDecoder):
_TLV_INFO_MAX_LEN = 256

def __init__(self, name, path, cpld_root, ro):
self.eeprom_path = "/sys/class/i2c-adapter/i2c-8/8-0051/eeprom"
self.eeprom_path = "/bsp/eeprom/sys_eeprom"
super(board, self).__init__(self.eeprom_path, 0, '', True)

4 changes: 2 additions & 2 deletions ssw/ACS-MSN2700/bin/sfputil.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ class sfputil(sfputilbase):

def __init__(self, port_num):
# Override port_to_eeprom_mapping for class initialization
eeprom_path = '/sys/class/i2c-adapter/i2c-2/2-0048/qsfp{0}_eeprom'
eeprom_path = '/bsp/qsfp/qsfp{0}'
for x in range(0, self.port_end + 1):
self.port_to_eeprom_mapping[x] = eeprom_path.format(x + self.eeprom_offset)
sfputilbase.__init__(self, port_num)