42f6b48b25
rename fwum_enhance_output.patch to 0001-Enhance-fwum-output.patch rename fix_file_permissions.patch to 0002-Fix-file-permissions.patch rename several_more_compile_fixes.patch to 0003-Cleanup-and-compiler-issues-only-no-functional-chang.patch rename ipmitool_adjust_suse_paths.patch to 0004-Adjust-SUSE-paths.patch rename hpm_x_compatibility_msg_is_debug_only.patch to 0005-HPM-x-compatibility-message-is-DEBUG-only.patch rename autotools_define_DOWNLOAD.diff to 0006-Make-IANA-PEN-download-configurable-fix-uninitalized.patch - Update to version 1.8.18+git20200916.1245aaa387dc: * fru: Fix crashes on 6-bit ASCII strings * Refix 6e037d6bfbbb93b349c8ca331ebde03a837f76bf * oem: Add product ID for YADRO VEGMAN * configure.ac: add '--location' for curl to follow location * configure.ac: replace '-#' by '--progress-bar' with curl * log: refix 16f937a1: Add missing header changes * Add version info to debug output * doc, ci: Fix an error in package name for Windows * doc: Fix a small typo in INSTALL * RPM support: updated spec file changelog OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/ipmitool?expand=0&rev=53
29 lines
855 B
Diff
29 lines
855 B
Diff
From d682f056d836b7978d67c5f9170a3ebfb103f54d Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Klaus=20K=C3=A4mpf?= <kkaempf@suse.de>
|
|
Date: Wed, 23 Sep 2020 09:38:11 +0200
|
|
Subject: [PATCH 5/6] HPM x compatibility message is DEBUG only
|
|
|
|
bsc#948540
|
|
|
|
Signed-off-by: Thomas Renninger <trenn@suse.com>
|
|
---
|
|
lib/hpm2.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/hpm2.c b/lib/hpm2.c
|
|
index 52e5366c7725..c7ae2343c004 100644
|
|
--- a/lib/hpm2.c
|
|
+++ b/lib/hpm2.c
|
|
@@ -99,7 +99,7 @@ int hpm2_get_capabilities(struct ipmi_intf * intf,
|
|
lprintf(LOG_DEBUG, "IPM Controller is not HPM.2 compatible");
|
|
return rsp->ccode;
|
|
} else if (rsp->ccode) {
|
|
- lprintf(LOG_NOTICE, "Get HPM.x Capabilities request failed,"
|
|
+ lprintf(LOG_DEBUG, "Get HPM.x Capabilities request failed,"
|
|
" compcode = %x", rsp->ccode);
|
|
return rsp->ccode;
|
|
}
|
|
--
|
|
2.26.0
|
|
|