From 811da1307a303c589fbc6b6a567f36178b8b90de Mon Sep 17 00:00:00 2001 From: Zdenek Styblik Date: Sun, 2 Jun 2013 12:38:23 +0000 Subject: [PATCH] ID: 3612372 - Recognize Broadcom IANA number and BCM5725 product Commit adds BCM IANA and BCM5725 product number. Commit for Rob Swindell --- ipmitool/include/ipmitool/ipmi.h | 1 + ipmitool/lib/ipmi_strings.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/ipmitool/include/ipmitool/ipmi.h b/ipmitool/include/ipmitool/ipmi.h index 887d029..e74c252 100644 --- a/ipmitool/include/ipmitool/ipmi.h +++ b/ipmitool/include/ipmitool/ipmi.h @@ -266,6 +266,7 @@ typedef enum IPMI_OEM { IPMI_OEM_DELL = 674, IPMI_OEM_LMC = 2168, IPMI_OEM_RADISYS = 4337, + IPMI_OEM_BROADCOM = 4413, IPMI_OEM_MAGNUM = 5593, IPMI_OEM_TYAN = 6653, IPMI_OEM_NEWISYS = 9237, diff --git a/ipmitool/lib/ipmi_strings.c b/ipmitool/lib/ipmi_strings.c index e7ad819..277b82f 100644 --- a/ipmitool/lib/ipmi_strings.c +++ b/ipmitool/lib/ipmi_strings.c @@ -67,6 +67,7 @@ const struct valstr ipmi_oem_info[] = { { IPMI_OEM_NOKIA_SIEMENS_NETWORKS, "Nokia Siemens Networks" }, { IPMI_OEM_BULL, "Bull Company" }, { IPMI_OEM_PPS, "Pigeon Point Systems" }, + { IPMI_OEM_BROADCOM, "Broadcom Corporation" }, { 0xffff , NULL }, }; @@ -112,6 +113,8 @@ const struct oemvalstr ipmi_oem_product_info[] = { { IPMI_OEM_KONTRON,5007, "AT8050" }, { IPMI_OEM_KONTRON,5301, "AT8400" }, { IPMI_OEM_KONTRON,5303, "AT8901" }, + /* Broadcom */ + { IPMI_OEM_BROADCOM, 5725, "BCM5725" }, { 0xffffff , 0xffff , NULL }, };