We are moving toward building all Python packages for SONiC as wheel packages rather than Debian packages. This will also allow us to more easily transition to Python 3. Python files are now packaged in "sonic-utilities" Pyhton wheel. Data files are now packaged in "sonic-utilities-data" Debian package. **- How I did it** - Build and install sonic-utilities as a Python package - Remove explicit installation of wheel dependencies, as these will now get installed implicitly by pip when installing sonic-utilities as a wheel - Build and install new sonic-utilities-data package to install data files required by sonic-utilities applications - Update all references to sonic-utilities scripts/entrypoints to either reference the new /usr/local/bin/ location or remove absolute path entirely where applicable Submodule updates: * src/sonic-utilities aa27dd9...2244d7b (5): > Support building sonic-utilities as a Python wheel package instead of a Debian package (#1122) > [consutil] Display remote device name in show command (#1120) > [vrf] fix check state_db error when vrf moving (#1119) > [consutil] Fix issue where the ConfigDBConnector's reference is missing (#1117) > Update to make config load/reload backward compatible. (#1115) * src/sonic-ztp dd025bc...911d622 (1): > Update paths to reflect new sonic-utilities install location, /usr/local/bin/ (#19)
92 lines
2.6 KiB
Python
Executable File
92 lines
2.6 KiB
Python
Executable File
#!/usr/bin/python
|
|
|
|
# dell staging fw updater script
|
|
|
|
import os
|
|
import sys
|
|
import subprocess
|
|
import argparse
|
|
|
|
|
|
onie_boot_folder = '/mnt/onie-boot/onie/tools/bin/onie-fwpkg'
|
|
onie_fwpkg_tool = '/mnt/onie-boot/onie/tools/bin/onie-fwpkg'
|
|
ONIE_BOOT_MODE_CMD = '/mnt/onie-boot/onie/tools/bin/onie-boot-mode'
|
|
HOST_GRUB_DIR = '/host'
|
|
HOST_GRUB_CFG = HOST_GRUB_DIR + '/grub/grub.cfg'
|
|
HOST_GRUB_ENV = HOST_GRUB_DIR + '/grub/grubenv'
|
|
HOST_GRUB_BOOT_DIR = '--boot-directory=' + HOST_GRUB_DIR
|
|
HOST_PLATFORM_INFO = HOST_GRUB_DIR + '/platform'
|
|
dell_reload_tool = '/usr/local/bin/reboot'
|
|
|
|
|
|
|
|
|
|
def set_onie_mode(option):
|
|
"""Select the ONIE boot mode, and set the next_entry to point to ONIE"""
|
|
_set_env_option('next_entry', 'ONIE')
|
|
subprocess.check_call([ONIE_BOOT_MODE_CMD, '-o', option])
|
|
|
|
def set_onie_fw_update_env():
|
|
"""Select the ONIE boot mode, and set the next_entry to point to ONIE"""
|
|
|
|
if not os.path.exists(onie_boot_folder):
|
|
os.makedirs(onie_boot_folder)
|
|
|
|
try:
|
|
subprocess.check_call(['mount','/dev/disk/by-label/ONIE-BOOT','/mnt/onie-boot'])
|
|
except:
|
|
print "onie-boot not able to mount"
|
|
|
|
def _set_env_option(option, value):
|
|
"""Set an option in the GRUB environment block. Pass None to value to
|
|
unset the option"""
|
|
if value is None:
|
|
action = 'unset'
|
|
key_value = option
|
|
else:
|
|
action = 'set'
|
|
key_value = '%s=%s' % (option, value)
|
|
|
|
subprocess.check_call(['grub-editenv', HOST_GRUB_ENV, action, key_value])
|
|
|
|
|
|
def dell_firmware_update_staging(image_name):
|
|
|
|
try:
|
|
p = subprocess.Popen([onie_fwpkg_tool,"purge"],stdout=subprocess.PIPE,stdin=subprocess.PIPE)
|
|
p.communicate("y")
|
|
except:
|
|
print "onie-fwpkg command not found for purging old fw updates"
|
|
|
|
try:
|
|
subprocess.check_call([onie_fwpkg_tool,"add", str(image_name)])
|
|
except:
|
|
print "onie-fwpkg is not found to stage fw updates"
|
|
|
|
try:
|
|
set_onie_mode("update")
|
|
except:
|
|
print "dell-image command not found"
|
|
|
|
try:
|
|
subprocess.check_call([dell_reload_tool])
|
|
except:
|
|
print "reload command not found"
|
|
|
|
|
|
if __name__ == '__main__':
|
|
parser = argparse.ArgumentParser(description='Dell HOST Firmware updates')
|
|
opts = parser.add_mutually_exclusive_group(required=True)
|
|
opts.add_argument('-u', '--update', nargs=1, metavar='IMAGE',
|
|
help='update specified image')
|
|
|
|
args = parser.parse_args()
|
|
|
|
if os.getuid() != 0:
|
|
parser.exit(127, 'ERROR: Must be root\n')
|
|
|
|
if args.update:
|
|
set_onie_fw_update_env()
|
|
dell_firmware_update_staging(args.update[0])
|
|
|