import OpenIPMI-2.0.29-1.el8
This commit is contained in:
parent
9eeafc3e4f
commit
d7ffcd4033
@ -1,2 +1 @@
|
||||
043738af9e1aaa6ae4f372d4af7870683e68faf8 SOURCES/OpenIPMI-2.0.27.tar.gz
|
||||
ade00c8a47a576e677ffc2efefca2d7269f175d6 SOURCES/openipmi.sysconf
|
||||
a8dd1a9b877e94926af1da69421e8f2bd642c9c7 SOURCES/OpenIPMI-2.0.29.tar.gz
|
||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1 @@
|
||||
SOURCES/OpenIPMI-2.0.27.tar.gz
|
||||
SOURCES/openipmi.sysconf
|
||||
SOURCES/OpenIPMI-2.0.29.tar.gz
|
||||
|
@ -1,30 +0,0 @@
|
||||
Fix including readline and readline history headers in OpenIPMI 2.0.27
|
||||
|
||||
It will probably be fixed in next release
|
||||
|
||||
diff --git a/cmdlang/ipmish.c b/cmdlang/ipmish.c
|
||||
index 139da67b..a4b8f0ba 100644
|
||||
--- a/cmdlang/ipmish.c
|
||||
+++ b/cmdlang/ipmish.c
|
||||
@@ -51,6 +51,7 @@
|
||||
#include <OpenIPMI/ipmi_cmdlang.h>
|
||||
#include <OpenIPMI/ipmi_debug.h>
|
||||
#include <readline/readline.h>
|
||||
+#include <readline/history.h>
|
||||
|
||||
#ifdef HAVE_GLIB
|
||||
#include <glib.h>
|
||||
diff --git a/sample/ipmi_serial_bmc_emu.c b/sample/ipmi_serial_bmc_emu.c
|
||||
index e0ae0197..184745ef 100644
|
||||
--- a/sample/ipmi_serial_bmc_emu.c
|
||||
+++ b/sample/ipmi_serial_bmc_emu.c
|
||||
@@ -42,7 +42,8 @@
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/select.h>
|
||||
-#include <editline/readline.h>
|
||||
+#include <readline/readline.h>
|
||||
+#include <readline/history.h>
|
||||
|
||||
#define _GNU_SOURCE
|
||||
#include <getopt.h>
|
68
SOURCES/openipmi.sysconf
Normal file
68
SOURCES/openipmi.sysconf
Normal file
@ -0,0 +1,68 @@
|
||||
## Path: Hardware/IPMI
|
||||
## Description: Enable standard hardware interfaces (KCS, BT, SMIC)
|
||||
## Type: yesno
|
||||
## Default: "yes"
|
||||
## Config: ipmi
|
||||
# Enable standard hardware interfaces (KCS, BT, SMIC)
|
||||
# You probably want this enabled.
|
||||
IPMI_SI=yes
|
||||
|
||||
## Path: Hardware/IPMI
|
||||
## Description: Enable /dev/ipmi0 interface, used by ipmitool, ipmicmd,
|
||||
## Type: yesno
|
||||
## Default: "yes"
|
||||
## Config: ipmi
|
||||
# Enable /dev/ipmi0 interface, used by ipmitool, ipmicmd,
|
||||
# and other userspace IPMI-using applications.
|
||||
# You probably want this enabled.
|
||||
DEV_IPMI=yes
|
||||
|
||||
## Path: Hardware/IPMI
|
||||
## Description: Enable IPMI_WATCHDOG if you want the IPMI watchdog
|
||||
## Type: yesno
|
||||
## Default: "no"
|
||||
## Config: ipmi
|
||||
# Enable IPMI_WATCHDOG if you want the IPMI watchdog
|
||||
# to reboot the system if it hangs
|
||||
IPMI_WATCHDOG=no
|
||||
|
||||
## Path: Hardware/IPMI
|
||||
## Description: Watchdog options - modinfo ipmi_watchdog for details
|
||||
## Type: string
|
||||
## Default: "timeout=60"
|
||||
## Config: ipmi
|
||||
# Watchdog options - modinfo ipmi_watchdog for details
|
||||
# watchdog timeout value in seconds
|
||||
# as there is no userspace ping application that runs during shutdown,
|
||||
# be sure to give it enough time for any device drivers to
|
||||
# do their cleanup (e.g. megaraid cache flushes)
|
||||
# without the watchdog triggering prematurely
|
||||
IPMI_WATCHDOG_OPTIONS="timeout=60"
|
||||
|
||||
## Path: Hardware/IPMI
|
||||
## Description: Enable IPMI_POWEROFF if you want the IPMI poweroff module to be loaded.
|
||||
## Type: yesno
|
||||
## Default: "no"
|
||||
## Config: ipmi
|
||||
# Enable IPMI_POWEROFF if you want the IPMI
|
||||
# poweroff module to be loaded.
|
||||
IPMI_POWEROFF=no
|
||||
|
||||
## Path: Hardware/IPMI
|
||||
## Description: Enable IPMI_POWERCYCLE if you want the system to be power-cycled on reboot
|
||||
## Type: yesno
|
||||
## Default: "no"
|
||||
## Config: ipmi
|
||||
# Enable IPMI_POWERCYCLE if you want the system to be power-cycled (power
|
||||
# down, delay briefly, power on) rather than power off, on systems
|
||||
# that support such. IPMI_POWEROFF=yes is also required.
|
||||
IPMI_POWERCYCLE=no
|
||||
|
||||
## Path: Hardware/IPMI
|
||||
## Description: Enable "legacy" interfaces for applications
|
||||
## Type: yesno
|
||||
## Default: "no"
|
||||
## Config: ipmi
|
||||
# Enable "legacy" interfaces for applications
|
||||
# Intel IMB driver interface
|
||||
IPMI_IMB=no
|
@ -3,7 +3,7 @@
|
||||
Summary: IPMI (Intelligent Platform Management Interface) library and tools
|
||||
Name: OpenIPMI
|
||||
|
||||
Version: 2.0.27
|
||||
Version: 2.0.29
|
||||
Release: 1%{?dist}
|
||||
License: LGPLv2+ and GPLv2+ or BSD
|
||||
URL: http://sourceforge.net/projects/openipmi/
|
||||
@ -12,7 +12,6 @@ Source1: openipmi.sysconf
|
||||
Source2: openipmi-helper
|
||||
Source3: ipmi.service
|
||||
Patch1: 0001-man.patch
|
||||
Patch2: 0002-readline-includes.patch
|
||||
|
||||
BuildRequires: gdbm-devel swig glib2-devel net-snmp-devel ncurses-devel
|
||||
BuildRequires: openssl-devel python3-devel perl-devel perl-generators
|
||||
@ -195,6 +194,9 @@ echo ".so man1/openipmish.1" > %{buildroot}%{_mandir}/man1/ipmish.1
|
||||
%{_mandir}/man5/ipmi_sim_cmd.5*
|
||||
|
||||
%changelog
|
||||
* Wed Nov 18 2020 Josef Ridky <jridky@redhat.com> - 2.0.29-1
|
||||
- New upstream release 2.0.29 (#1796588)
|
||||
|
||||
* Tue Oct 08 2019 Vaclav Dolezal <vdolezal@redhat.com> - 2.0.27-1
|
||||
- New upstream release 2.0.27
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user