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

Pre-update Check

Change History

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

Basic Information

Function Description

Triggers the pre-update check for firmware and checks whether the specified firmware can be updated. The success of this command only indicates that the pre-check has been triggered, not that the firmware can be updated. The result must be obtained through 9Ah. If the check is still in progress, the 9Ah return value is 2.

Privilege

BasicSetting

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=99h
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 pre-check is triggered for all firmware.
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.

Command Example

Trigger the pre-check for all firmware

Request:

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

Response:

text
0xdb 0x07 0x00

Trigger the pre-check for a single firmware

Request:

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

Response:

text
0xdb 0x07 0x00

Back to Index