代码仓
中
Set BIOS Configuration
更新时间: 2026/08/06
在AtomGit上查看源码

Set BIOS Configuration ​

Change History ​

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

Basic Information ​

Function Description ​

Setting BIOS Configuration Items

Privilege ​

UserMgmt

Command Information ​

Request Information ​

ByteData Field
NetFn30h
CMD93h
1:3Manufacturer ID, LS 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.
4Sub command, sub command=8Ch
5System ID, which is used to query the BIOS option of the corresponding system.
6:7Reserved field. The default value is 0.
8Property Length: indicates the length of the property name. The length is recorded as M.
9:8+MProperty name, which is case sensitive.
M+9Value Type: attribute value type. 0: character string; 1: number.
M+10Value Length: indicates the length of an attribute value. The length is recorded as N.
M+11:M+N+10Value: attribute value, which is an ASCII character string. If the value is a number, the value is in little-endian format. For example, if the type is 0 and the attribute value is 0x68, it indicates "h." If the type is 1 and the attribute value is 0x68, it indicates 104.

Response Information ​

ByteData Field
1Completion Code
C9h: ParmOutOfRange. The corresponding attribute is not found or the attribute value is not within the allowed range.
C7h: ReqDataLenInvalid, indicating that the command length is incorrect
2Manufacturer ID, LS 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 ​

Example ​

Request:

bash
ipmicmd -k "0f 00 30 93 \{ManufacturerId\} 8C \{SystemId\} \{Type\} \{Reserved\} \{Length\} \{Property\} \{Type\} \{Value Length\} \{Value\}" smi 0

Response:

text

Back to Index ​