p7zip: fix man page paths
[oi-userland.git] / components / sysutils / ipmitool / patches / 08-fwum_enhance_output.patch
blobc8a463ae47366f15f198ff9b3ea1f73a390a75a3
1 https://build.opensuse.org/package/view_file/systemsmanagement/ipmitool/fwum_enhance_output.patch?expand=1
3 Index: ipmitool-1.8.16/lib/ipmi_fwum.c
4 ===================================================================
5 --- ipmitool-1.8.16.orig/lib/ipmi_fwum.c 2015-11-22 13:50:54.000000000 +0100
6 +++ ipmitool-1.8.16/lib/ipmi_fwum.c 2016-02-25 13:25:35.907249893 +0100
7 @@ -1098,12 +1098,14 @@ ipmi_kfwum_checkfwcompat(tKFWUM_BoardInf
8 int compatible = 0;
9 if (boardInfo.iana != firmInfo.iana) {
10 lprintf(LOG_ERR,
11 - "Board IANA does not match firmware IANA.");
12 + "Board IANA [%u] does not match firmware IANA [%u]\n",
13 + boardInfo.iana, firmInfo.iana);
14 compatible = (-1);
16 if (boardInfo.boardId != firmInfo.boardId) {
17 lprintf(LOG_ERR,
18 - "Board IANA does not match firmware IANA.");
19 + "Board ID [%u] does not match firmware board ID [%u]\n",
20 + boardInfo.boardId, firmInfo.boardId);
21 compatible = (-1);
23 if (compatible != 0) {
24 @@ -1121,6 +1123,10 @@ printf_kfwum_info(tKFWUM_BoardInfo board
25 printf(
26 "Target IANA number : %u\n", boardInfo.iana);
27 printf(
28 +"FW File Board Id : %u\n",firmInfo.boardId);
29 + printf(
30 +"FW File IANA number : %u\n",firmInfo.iana);
31 + printf(
32 "File Size : %lu bytes\n", firmInfo.fileSize);
33 printf(
34 "Firmware Version : %d.%d%d SDR %d\n", firmInfo.versMajor,