Auto sync2gitlab import of ledmon-0.96-3.el8.src.rpm
This commit is contained in:
parent
c281a37af0
commit
fa3b159926
23
ipmi-avoid-error-messages-on-non-dell-platforms.patch
Normal file
23
ipmi-avoid-error-messages-on-non-dell-platforms.patch
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
From bd78c563daa6df17ad442d10127526f5450fd06b Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Kinga=20Ta=C5=84ska?= <kinga.tanska@intel.com>
|
||||||
|
Date: Thu, 17 Nov 2022 15:55:06 +0100
|
||||||
|
Subject: [PATCH] ipmi: avoid error messages on non-dell platforms (#112)
|
||||||
|
|
||||||
|
Signed-off-by: Kinga Tanska <kinga.tanska@intel.com>
|
||||||
|
---
|
||||||
|
src/ipmi.c | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/ipmi.c b/src/ipmi.c
|
||||||
|
index 3862840..d7d9e89 100644
|
||||||
|
--- a/src/ipmi.c
|
||||||
|
+++ b/src/ipmi.c
|
||||||
|
@@ -126,7 +126,7 @@ int ipmicmd(int sa, int lun, int netfn, int cmd, int datalen, void *data,
|
||||||
|
goto end;
|
||||||
|
}
|
||||||
|
if (rcv.msg.data[0])
|
||||||
|
- log_info("IPMI Error: %.2x\n", rcv.msg.data[0]);
|
||||||
|
+ log_debug("IPMI Error: %.2x\n", rcv.msg.data[0]);
|
||||||
|
rc = 0;
|
||||||
|
*rlen = rcv.msg.data_len - 1;
|
||||||
|
memcpy(resp, rcv.msg.data + 1, *rlen);
|
@ -1,12 +1,14 @@
|
|||||||
Summary: Enclosure LED Utilities
|
Summary: Enclosure LED Utilities
|
||||||
Name: ledmon
|
Name: ledmon
|
||||||
Version: 0.96
|
Version: 0.96
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
URL: https://github.com/intel/ledmon
|
URL: https://github.com/intel/ledmon
|
||||||
Source0: https://github.com/intel/ledmon/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
Source0: https://github.com/intel/ledmon/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
Patch0: ipmi-avoid-error-messages-on-non-dell-platforms.patch
|
||||||
|
|
||||||
BuildRequires: perl-interpreter perl-podlators
|
BuildRequires: perl-interpreter perl-podlators
|
||||||
BuildRequires: sg3_utils-devel
|
BuildRequires: sg3_utils-devel
|
||||||
BuildRequires: pciutils-devel
|
BuildRequires: pciutils-devel
|
||||||
@ -28,6 +30,7 @@ use this application.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch0 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# can't use smp_flags because -j4 makes the build fail
|
# can't use smp_flags because -j4 makes the build fail
|
||||||
@ -56,6 +59,9 @@ make install INSTALL="%{__install} -p" DESTDIR=$RPM_BUILD_ROOT SBIN_DIR=$RPM_BUI
|
|||||||
%{_unitdir}/ledmon.service
|
%{_unitdir}/ledmon.service
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Nov 29 2022 Jan Macku <jamacku@redhat.com> - 0.96-3
|
||||||
|
- Decrease log level of IPMI messages (#2148944)
|
||||||
|
|
||||||
* Mon Jun 27 2022 Jan Macku <jamacku@redhat.com> - 0.96-2
|
* Mon Jun 27 2022 Jan Macku <jamacku@redhat.com> - 0.96-2
|
||||||
- Use systemd-rpm-macros to handle ledmon.service (#2073331)
|
- Use systemd-rpm-macros to handle ledmon.service (#2073331)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user