Get Pre-update Check Result
更新时间: 2026/09/02
在AtomGit上查看源码

Get Pre-update Check Result

Change History

openUBMC VersionRevision DateDescription
26.092026/09/02Initial draft: add command details

Basic Information

Function Description

Obtains the result of the pre-update check for firmware.

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=9Ah
5FruId
6:7ComponentID: firmware ID. LB Byte first. For the value definition, see Firmware ID Management.
8:11ComponentIDEx: firmware extended ID. LB Byte first. For the value definition, see Firmware ID Management. If FruId, ComponentID, and ComponentIDEx are all f, the check results for all firmware are queried.
12:13Reserved. Set this field to 0.

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.
5Result of the pre-update check for firmware:
0 - The firmware can be updated.
1 - The firmware cannot be updated currently.
2 - The firmware is being checked.

Command Example

Obtain the pre-check result for all firmware

Request:

bash
ipmitool raw 0x30 0x93 0xdb 0x07 0x00 0x9a 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x00 0x00

Response:

text
0xdb 0x07 0x00 0x00

Obtain the pre-check result for a single firmware

Request:

bash
ipmitool raw 0x30 0x93 0xdb 0x07 0x00 0x9a 0xff 0x18 0x01 0x00 0x00 0x00 0x00 0x00 0x00

Response:

text
0xdb 0x07 0x00 0x00

Back to Index