Get Full Image Update Status
更新时间: 2026/08/06
在Gitcode上查看源码

Get Full Image Update Status

Change History

openUBMC VersionRevision DateDescription
25.062025/06/26Initial draft: add command details

Basic Information

Function Description

Querying the Upgrade Status of the Entire Package

Privilege

ReadOnly

Command Information

Request Information

ByteData Field
NetFn30h
Cmd93h
1:3Manufacturer ID, LB Byte first. The length is fixed to three bytes. For example, if the vendor ID is 2011 and the corresponding hexadecimal value is 0x0007DB, the first byte is DBh, the second byte is 07h, and the third byte is 00h.
4SubCmd, subcommand=95h
5:6Reserved. Currently, this field is set to 0, which is reserved for parameters that may be added later.

Response Information

ByteData Field
1Completion Code
2:4Manufacturer ID, LB Byte first. The length is fixed to three bytes. For example, if the vendor ID is 2011 and the corresponding hexadecimal value is 0x0007DB, the first byte is DBh, the second byte is 07h, and the third byte is 00h.
5Length: length of the returned data
6:NUpgrade progress and status of each firmware in the entire package. Every two bytes describe a piece of firmware. The progress percentage uses the least significant byte. The upgrade status code uses the least significant four bits of the most significant byte. The most significant four bits of the most significant byte are reserved. The status code is defined as follows:
0: normal
1: The update fails.
2: No specific board is matched and the upgrade is not performed.
Example: 0x00 0x50 The firmware upgrade progress is 80%, and the current status code is 0.
0x01 0x00: The firmware upgrade progress is 0%, and the current status code is 1.

Command Example

Query the upgrade progress and status of the entire package.

Request:

bash
ipmitool raw 0x30 0x93 0xdb 0x07 0x00 0x95 0x00 0x00

Response:

text
0xdb 0x07 0x00 0x0a 0x00 0x50 0x00 0x53 0x01 0x00 0x00 0x64 0x02 0x00

Back to Index