diff --git a/debian/changelog b/debian/changelog index 7441fa548f..b761a39988 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -acs-utilities (0.1) UNRELEASED; urgency=low +sonic-utilities (0.1) UNRELEASED; urgency=low * Initial release. (Closes: #XXXXXX) diff --git a/debian/control b/debian/control index 37982806b3..6c2f12c20c 100644 --- a/debian/control +++ b/debian/control @@ -1,11 +1,11 @@ -Source: acs-utilities +Source: sonic-utilities Maintainer: Shuotian Cheng 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 diff --git a/debian/rules b/debian/rules old mode 100644 new mode 100755 diff --git a/ssw/ACS-MSN2700/bin/eeprom.py b/ssw/ACS-MSN2700/bin/eeprom.py index ab083f489a..a9e22e3e69 100644 --- a/ssw/ACS-MSN2700/bin/eeprom.py +++ b/ssw/ACS-MSN2700/bin/eeprom.py @@ -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) diff --git a/ssw/ACS-MSN2700/bin/sfputil.py b/ssw/ACS-MSN2700/bin/sfputil.py index 08dd1f4d8b..bfe2086db7 100644 --- a/ssw/ACS-MSN2700/bin/sfputil.py +++ b/ssw/ACS-MSN2700/bin/sfputil.py @@ -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) - \ No newline at end of file +