Update the power shelf firmware
Use this section to update the firmware for the power shelf .
Delta power shelf
Update the Delta power shelf PMC or PSU firmware using the Linux command curl from a Redfish-enabled client system. Both PMC and PSU firmware files are provided in a compressed .tar format.
Note
PSU firmware updates are applied at the shelf level. Initiating a PSU firmware update will apply the update to all six PSUs simultaneously.
Command Syntax:
$ curl -ks -u <PMC username>:<PMC password> -X POST 'https://<PMC IP address>/redfish/v1/UpdateService/update' --data-binary "@<PSU or PMC firmware file path>"
Lite-On power shelf
- Update the PMC firmware via Redfish CLI commands
- Update the PSU firmware via Redfish CLI commands
- Update the firmware via PMC Web GUI
Update the PMC firmware via Redfish CLI commands
Update the Lite-On power shelf PMC firmware using the Linux command curl from a Redfish-enabled client system.
Command Syntax:
$ curl -k -u <PMC username>:<PMC password> https://<PMC IP address>/redfish/v1/UpdateService -X PATCH -d ’{”HttpPushUriOptions”: {”HttpPushUriApplyTime”:{”ApplyTime”: ”Immediate”}}}’
$ curl -k -H ”Content-Type: application/octet-stream” -u <PMC username>:<PMC password> -X POST -T <firmware image path> https://<PMC IP address>/redfish/v1/UpdateService
Update the PSU firmware via Redfish CLI commands
Update the Lite-On power shelf PSU firmware using the Linux command curl from a Redfish-enabled client system.
Command Syntax:
$ curl -k -H ”Content-Type: application/octet-stream” -u <PMC username>:<PMC password> -H ”LiteonPowerDeviceId: <PSU device ID>” --data-binary @<firmware image path> -X POST https://<PMC IP address>/redfish/v1/Chassis/chassis/Power/Oem/LiteOn/PowerUnits/Actions/UpdateService/
Update the firmware via PMC Web GUI
Navigate to the Firmware section of the PMC Web GUI and select Add File to import the firmware file. Click Start update to initiate the process. This procedure will simultaneously update both the Running image and Backup image.


Give documentation feedback