From 9e3dba7e976939e5e9a4b4be7909aa8772d13bca Mon Sep 17 00:00:00 2001 From: Zdenek Styblik Date: Thu, 27 Mar 2014 19:57:30 +0100 Subject: [PATCH] ID: 301 - Add OS/Hypervisor installation status events Add OS/Hypervisor installation status event types to SEL as noted in table-24 in section 42.2. Commit-for: Charles Rose --- include/ipmitool/ipmi_sel.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/ipmitool/ipmi_sel.h b/include/ipmitool/ipmi_sel.h index a125f85..8651ef2 100644 --- a/include/ipmitool/ipmi_sel.h +++ b/include/ipmitool/ipmi_sel.h @@ -521,6 +521,10 @@ static struct ipmi_event_sensor_types sensor_specific_types[] __attribute__((unu { 0x1f, 0x04, 0xff, IPMI_EVENT_CLASS_DISCRETE, "OS Boot", "CD-ROM boot completed" }, { 0x1f, 0x05, 0xff, IPMI_EVENT_CLASS_DISCRETE, "OS Boot", "ROM boot completed" }, { 0x1f, 0x06, 0xff, IPMI_EVENT_CLASS_DISCRETE, "OS Boot", "boot completed - device not specified" }, + { 0x1f, 0x07, 0xff, IPMI_EVENT_CLASS_DISCRETE, "OS Boot", "Installation started" }, + { 0x1f, 0x08, 0xff, IPMI_EVENT_CLASS_DISCRETE, "OS Boot", "Installation completed" }, + { 0x1f, 0x09, 0xff, IPMI_EVENT_CLASS_DISCRETE, "OS Boot", "Installation aborted" }, + { 0x1f, 0x0a, 0xff, IPMI_EVENT_CLASS_DISCRETE, "OS Boot", "Installation failed" }, { 0x20, 0x00, 0xff, IPMI_EVENT_CLASS_DISCRETE, "OS Stop/Shutdown", "Error during system startup" }, { 0x20, 0x01, 0xff, IPMI_EVENT_CLASS_DISCRETE, "OS Stop/Shutdown", "Run-time critical stop" },