Sync from SUSE:SLFO:Main freeipmi revision 0792beadbd01eaeba12fea95da220a38

This commit is contained in:
Adrian Schröter 2024-09-17 14:38:41 +02:00
parent e5fe0b47a4
commit bc92f5c2ae
7 changed files with 69 additions and 10 deletions

BIN
freeipmi-1.6.11.tar.gz (Stored with Git LFS)

Binary file not shown.

Binary file not shown.

BIN
freeipmi-1.6.14.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

BIN
freeipmi-1.6.14.tar.gz.sig Normal file

Binary file not shown.

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Mon Jun 3 14:40:55 UTC 2024 - Klaus Kämpf <kkaempf@suse.com>
- use %autosetup
- apply patches with -p1
-------------------------------------------------------------------
Thu Mar 7 13:07:37 UTC 2024 - Klaus Kämpf <kkaempf@suse.com>
- fix gcc-14 build: gcc-14.patch (bsc#1220476)
-------------------------------------------------------------------
Mon Jan 29 08:34:51 UTC 2024 - Klaus Kämpf <kkaempf@suse.com>
- freeipmi 1.6.14
* Fix build issue common to non-x86 systems.
- freeipmi 1.6.13
* Fix build issues on systems where inb/outb are declared with inline
assembly.
* Add additional sensor/event interpretations.
- freeipmi 1.6.12
* Use poll() over select() to avoid fd limit in openipmi driver.
* Fix potential portability problems on systems without cbrt().
* Minor documentation updates.
-------------------------------------------------------------------
Mon Jun 12 09:29:06 UTC 2023 - Klaus Kämpf <kkaempf@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package freeipmi
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2003-2008 FreeIPMI Core Team
#
# All modifications and additions to the file contributed by third parties
@ -37,12 +37,13 @@
%{!?_initddir: %global _initddir %{_sysconfdir}/init.d}
Name: freeipmi
Version: 1.6.11
Version: 1.6.14
Release: %{release}
URL: http://www.gnu.org/software/freeipmi/
Source0: http://ftp.gnu.org/gnu/freeipmi/%{name}-%{srcversion}.tar.gz
Source1: http://ftp.gnu.org/gnu/freeipmi/%{name}-%{srcversion}.tar.gz.sig
Source2: %{name}.keyring
Patch1: gcc-14.patch
Summary: IPMI Service Processor, BMC management tool
License: GPL-3.0-or-later
Group: System/Management
@ -60,7 +61,7 @@ Obsoletes: freeipmi-ipmimonitoring < %{version}
Provides: freeipmi-ipmimonitoring = %{version}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires(post): info
Requires(preun):info
Requires(preun): info
%description
This project provides "Remote-Console" (out-of-band) and
@ -90,7 +91,7 @@ Requires(pre): %fillup_prereq
Requires: freeipmi = %{version}
%if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version} || 0%{?fedora} || 0%{?rhel}
Requires(post): chkconfig
Requires(preun):chkconfig
Requires(preun): chkconfig
%endif
Requires: logrotate
@ -103,7 +104,7 @@ Group: System/Management
Requires: freeipmi = %{version}
%if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version} || 0%{?fedora} || 0%{?rhel}
Requires(post): chkconfig
Requires(preun):chkconfig
Requires(preun): chkconfig
%endif
%{?systemd_requires}
@ -117,7 +118,7 @@ Requires: freeipmi = %{version}
Provides: freeipmi:/usr/sbin/ipmiseld
%if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version} || 0%{?fedora} || 0%{?rhel}
Requires(post): chkconfig
Requires(preun):chkconfig
Requires(preun): chkconfig
%endif
%{?systemd_requires}
@ -177,7 +178,7 @@ Platform Management Interface specification.
This package contains the libfreeipmi library.
%prep
%setup -q -n %{name}-%{srcversion}
%autosetup -p1 -n %{name}-%{srcversion}
%build
# simple .spec expressions for SLE10

30
gcc-14.patch Normal file
View File

@ -0,0 +1,30 @@
Index: freeipmi.spec_dir/freeipmi-1.6.14/libfreeipmi/sel/ipmi-sel-string-supermicro-common.h
===================================================================
--- freeipmi.spec_dir.orig/libfreeipmi/sel/ipmi-sel-string-supermicro-common.h
+++ freeipmi.spec_dir/libfreeipmi/sel/ipmi-sel-string-supermicro-common.h
@@ -38,5 +38,14 @@ int sel_string_output_supermicro_overhea
unsigned int flags,
unsigned int *wlen,
struct ipmi_sel_system_event_record_data *system_event_record_data);
+int sel_string_output_supermicro_dimm_event_data2_event_data3 (ipmi_sel_ctx_t ctx,
+ struct ipmi_sel_entry *sel_entry,
+ uint8_t sel_record_type,
+ char *buf,
+ unsigned int buflen,
+ unsigned int flags,
+ unsigned int *wlen,
+ struct ipmi_sel_system_event_record_data *system_event_record_data,
+ int *oem_rv);
#endif /* IPMI_SEL_STRING_SUPERMICRO_COMMON_H */
Index: freeipmi.spec_dir/freeipmi-1.6.14/ipmi-sensors/ipmi-sensors-oem-intel.c
===================================================================
--- freeipmi.spec_dir.orig/ipmi-sensors/ipmi-sensors-oem-intel.c
+++ freeipmi.spec_dir/ipmi-sensors/ipmi-sensors-oem-intel.c
@@ -34,6 +34,7 @@
#include "ipmi-sensors-oem-intel.h"
#include "ipmi-sensors-oem-intel-s5500wb.h"
#include "ipmi-sensors-oem-intel-s2600jf.h"
+#include "ipmi-sensors-oem-intel-s2600wp.h"
#include "ipmi-sensors-oem-intel-quanta-qssc-s4r.h"
#include "ipmi-sensors-oem-intel-node-manager.h"