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

Get BIOS Configuration ​

Change History ​

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

Basic Information ​

Function Description ​

Obtains BIOS configuration items.

Privilege ​

ReadOnly

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=8Bh
5System ID, which is used to query the BIOS option of the corresponding system.
6Type: query type. 0: value to take effect; 1: value that has taken effect.
7:8Reserved field. The default value is 0.
9Length: indicates the length of the attribute name.
10:NProperty: property name, which is case sensitive.

Response Information ​

ByteData Field
1Completion Code
C9h: ParmOutOfRange. The corresponding attribute is not found or the query type is incorrect.
C7h: ReqDataLenInvalid, indicating that the command length is incorrect
2:4Manufacturer 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.
5:6Reserved field. The default value is 0.
7Type: attribute value type. 0: character string; 1: number.
8Length: indicates the length of the attribute value.
9:NValue: 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.

Command Example ​

Example ​

Request:

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

Response:

text

Back to Index ​