576167f497
Copy from systemsmanagement:wbem/ipmitool based on submit request 34171 from user coolo OBS-URL: https://build.opensuse.org/request/show/34171 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ipmitool?expand=0&rev=10
40 lines
1.6 KiB
Diff
40 lines
1.6 KiB
Diff
Be more verbose when detecting a board mismatch when trying to flash the firmware
|
|
|
|
Signed-off-by: Thomas Renninger <trenn@suse.de>
|
|
|
|
---
|
|
lib/ipmi_fwum.c | 8 ++++++--
|
|
1 file changed, 6 insertions(+), 2 deletions(-)
|
|
|
|
Index: ipmitool-1.8.11/lib/ipmi_fwum.c
|
|
===================================================================
|
|
--- ipmitool-1.8.11.orig/lib/ipmi_fwum.c
|
|
+++ ipmitool-1.8.11/lib/ipmi_fwum.c
|
|
@@ -1656,13 +1656,15 @@ tKFWUM_Status KfwumValidFirmwareForBoard
|
|
|
|
if(boardInfo.iana != firmInfo.iana)
|
|
{
|
|
- printf("Board IANA does not match firmware IANA\n");
|
|
+ printf("Board IANA [%u] does not match firmware IANA [%u]\n",
|
|
+ boardInfo.iana, firmInfo.iana);
|
|
status = KFWUM_STATUS_ERROR;
|
|
}
|
|
|
|
if(boardInfo.boardId != firmInfo.boardId)
|
|
{
|
|
- printf("Board IANA does not match firmware IANA\n");
|
|
+ printf("Error: Board ID [%u] does not match firmware board ID [%u]\n",
|
|
+ boardInfo.boardId, firmInfo.boardId);
|
|
status = KFWUM_STATUS_ERROR;
|
|
}
|
|
|
|
@@ -1680,6 +1682,8 @@ static void KfwumOutputInfo(tKFWUM_Board
|
|
{
|
|
printf("Target Board Id : %u\n",boardInfo.boardId);
|
|
printf("Target IANA number : %u\n",boardInfo.iana);
|
|
+ printf("FW File Board Id : %u\n",firmInfo.boardId);
|
|
+ printf("FW File IANA number : %u\n",firmInfo.iana);
|
|
printf("File Size : %lu bytes\n",firmInfo.fileSize);
|
|
printf("Firmware Version : %d.%d%d SDR %d\n",firmInfo.versMajor,
|
|
firmInfo.versMinor, firmInfo.versSubMinor, firmInfo.sdrRev);
|