Artem Senichev | 67355a8 | 2018-03-16 12:35:51 +0300 | [diff] [blame] | 1 | From 177df7658cbd8c78d5f3cf043e78d02880945b85 Mon Sep 17 00:00:00 2001 |
| 2 | From: Artem Senichev <a.senichev@yadro.com> |
| 3 | Date: Tue, 13 Mar 2018 15:50:51 +0300 |
| 4 | Subject: [PATCH] Set IBM instead of AMI for eSEL |
| 5 | |
| 6 | Originally created by MSI (S188). |
| 7 | The root cause is that the latest openbmc replace the NETFUN_AMI with |
| 8 | NETFUN_IBM, so bmc can't log the eSEL from PNOR. |
| 9 | |
| 10 | Signed-off-by: Artem Senichev <a.senichev@yadro.com> |
| 11 | --- |
| 12 | src/include/usr/ipmi/ipmiif.H | 2 +- |
| 13 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 14 | |
| 15 | diff --git a/src/include/usr/ipmi/ipmiif.H b/src/include/usr/ipmi/ipmiif.H |
| 16 | index 44283cc0b..0f1309e31 100644 |
| 17 | --- a/src/include/usr/ipmi/ipmiif.H |
| 18 | +++ b/src/include/usr/ipmi/ipmiif.H |
| 19 | @@ -258,7 +258,7 @@ namespace IPMI |
| 20 | |
| 21 | //AMI-specific storage messages |
| 22 | inline const command_t partial_add_esel(void) |
| 23 | - { return std::make_pair(NETFUN_AMI, 0xf0); } |
| 24 | + { return std::make_pair(NETFUN_IBM, 0xf0); } |
| 25 | |
| 26 | // event messages |
| 27 | inline const command_t platform_event(void) |
| 28 | -- |
| 29 | 2.14.1 |
| 30 | |