From 715add8feffbd2917094dc4e9eb7794dfccd5382 Mon Sep 17 00:00:00 2001 From: Duncan Laurie Date: Sat, 14 Jan 2006 18:43:43 +0000 Subject: [PATCH] fix iana for supermicro, add for tyan --- ipmitool/include/ipmitool/ipmi_sel.h | 5 +++-- ipmitool/lib/ipmi_strings.c | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ipmitool/include/ipmitool/ipmi_sel.h b/ipmitool/include/ipmitool/ipmi_sel.h index 2259819..2adb7ac 100644 --- a/ipmitool/include/ipmitool/ipmi_sel.h +++ b/ipmitool/include/ipmitool/ipmi_sel.h @@ -531,9 +531,10 @@ typedef enum IPMI_OEM { IPMI_OEM_UNKNOWN = 0, IPMI_OEM_SUN = 42, IPMI_OEM_INTEL = 343, - IPMI_OEM_SUPERMICRO = 2168, + IPMI_OEM_TYAN = 6653, IPMI_OEM_NEWISYS = 9237, - IPMI_OEM_KONTRON = 15000 + IPMI_OEM_SUPERMICRO = 10876, + IPMI_OEM_KONTRON = 15000, } IPMI_OEM; int ipmi_sel_main(struct ipmi_intf *, int, char **); diff --git a/ipmitool/lib/ipmi_strings.c b/ipmitool/lib/ipmi_strings.c index d1d05a3..bc4b5b7 100644 --- a/ipmitool/lib/ipmi_strings.c +++ b/ipmitool/lib/ipmi_strings.c @@ -45,8 +45,9 @@ const struct valstr ipmi_oem_info[] = { { IPMI_OEM_UNKNOWN, "Unknown" }, { IPMI_OEM_SUN, "Sun Microsystems" }, { IPMI_OEM_INTEL, "Intel Corporation" }, - { IPMI_OEM_SUPERMICRO, "Supermicro" }, + { IPMI_OEM_TYAN, "Tyan Computer Corporation" }, { IPMI_OEM_NEWISYS, "Newisys" }, + { IPMI_OEM_SUPERMICRO, "Supermicro" }, { IPMI_OEM_KONTRON, "Kontron" }, { 0xffff , NULL }, };