From c19b24cbdfd08fcc9e206c840552c07de03797c3 Mon Sep 17 00:00:00 2001 From: Lyle Mantooth Date: Fri, 21 Feb 2025 15:04:03 -0500 Subject: [PATCH] Add missing values for `get_os_boot_event/1`. --- src/eipmi_sensor.erl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/eipmi_sensor.erl b/src/eipmi_sensor.erl index 59065a6..eaf0b26 100644 --- a/src/eipmi_sensor.erl +++ b/src/eipmi_sensor.erl @@ -1286,7 +1286,11 @@ get_os_boot_event(16#02) -> [{sensor_value, completed_pxe}]; get_os_boot_event(16#03) -> [{sensor_value, completed_diagnostic}]; get_os_boot_event(16#04) -> [{sensor_value, completed_cdrom}]; get_os_boot_event(16#05) -> [{sensor_value, completed_rom}]; -get_os_boot_event(16#06) -> [{sensor_value, completed}]. +get_os_boot_event(16#06) -> [{sensor_value, completed}]; +get_os_boot_event(16#07) -> [{sensor_value, installation_started}]; +get_os_boot_event(16#08) -> [{sensor_value, installation_completed}]; +get_os_boot_event(16#09) -> [{sensor_value, installation_aborted}]; +get_os_boot_event(16#0a) -> [{sensor_value, installatino_failed}]. %%------------------------------------------------------------------------------ %% @private