1 #pragma once 2 3 #include <stdint.h> 4 5 enum ipmi_app_sysinfo_params 6 { 7 IPMI_SYSINFO_SET_STATE = 0x00, 8 IPMI_SYSINFO_SYSTEM_FW_VERSION = 0x01, 9 IPMI_SYSINFO_SYSTEM_NAME = 0x02, 10 IPMI_SYSINFO_PRIMARY_OS_NAME = 0x03, 11 IPMI_SYSINFO_OS_NAME = 0x04, 12 IPMI_SYSINFO_OS_VERSION = 0x05, 13 IPMI_SYSINFO_BMC_URL = 0x06, 14 IPMI_SYSINFO_OS_HYP_URL = 0x07, 15 IPMI_SYSINFO_OEM_START = 0xC0, // Start of range of OEM parameters 16 }; 17