update buildroot to 2017.02.11
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
From 04d489936191e685123978a1ca370f9cc30e6a06 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?J=C3=B6rg=20Krause?= <joerg.krause@embedded.rocks>
|
||||
Date: Mon, 18 Apr 2016 21:17:26 +0200
|
||||
Subject: [PATCH] Fix missing stddef.h include
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Needed for wchar_t. Fixes build error:
|
||||
|
||||
imbapi.h:140:9: error: unknown type name 'wchar_t'
|
||||
typedef wchar_t WCHAR;
|
||||
|
||||
Upstream status: Pending
|
||||
https://sourceforge.net/p/ipmitool/mailman/message/35022779/
|
||||
|
||||
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
|
||||
---
|
||||
src/plugins/imb/imbapi.h | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/src/plugins/imb/imbapi.h b/src/plugins/imb/imbapi.h
|
||||
index 6ba4121..6b39b47 100644
|
||||
--- a/src/plugins/imb/imbapi.h
|
||||
+++ b/src/plugins/imb/imbapi.h
|
||||
@@ -33,6 +33,9 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*----------------------------------------------------------------------*/
|
||||
+
|
||||
+#include <stddef.h>
|
||||
+
|
||||
#ifndef _WINDEFS_H
|
||||
#define _WINDEFS_H
|
||||
#ifndef FALSE
|
||||
--
|
||||
2.10.2
|
||||
|
||||
33
bsp/buildroot-2017.02.11/package/ipmitool/Config.in
Normal file
33
bsp/buildroot-2017.02.11/package/ipmitool/Config.in
Normal file
@@ -0,0 +1,33 @@
|
||||
config BR2_PACKAGE_IPMITOOL
|
||||
bool "ipmitool"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
IPMItool provides a simple command-line interface to IPMI-enabled devices.
|
||||
|
||||
http://sourceforge.net/projects/ipmitool/
|
||||
|
||||
if BR2_PACKAGE_IPMITOOL
|
||||
|
||||
config BR2_PACKAGE_IPMITOOL_LANPLUS
|
||||
bool "enable lanplus interface"
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
help
|
||||
Enables the IPMI v2.0 RMCP+ LAN interface typically used to send IPMI
|
||||
commands to the BMC of a remote server.
|
||||
Not needed if you only want to communicate with the local BMC of your
|
||||
device using the OpenIPMI ipmi_si kernel module, or if using the
|
||||
legacy IPMI v1.5 RMCP LAN interface.
|
||||
|
||||
config BR2_PACKAGE_IPMITOOL_IPMIEVD
|
||||
bool "ipmievd"
|
||||
help
|
||||
IPMI event daemon for sending events to syslog
|
||||
|
||||
config BR2_PACKAGE_IPMITOOL_IPMISHELL
|
||||
bool "ipmishell"
|
||||
select BR2_PACKAGE_NCURSES
|
||||
select BR2_PACKAGE_READLINE
|
||||
help
|
||||
IPMI shell interface
|
||||
|
||||
endif
|
||||
2
bsp/buildroot-2017.02.11/package/ipmitool/ipmitool.hash
Normal file
2
bsp/buildroot-2017.02.11/package/ipmitool/ipmitool.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally computed:
|
||||
sha256 0c1ba3b1555edefb7c32ae8cd6a3e04322056bc087918f07189eeedfc8b81e01 ipmitool-1.8.18.tar.bz2
|
||||
34
bsp/buildroot-2017.02.11/package/ipmitool/ipmitool.mk
Normal file
34
bsp/buildroot-2017.02.11/package/ipmitool/ipmitool.mk
Normal file
@@ -0,0 +1,34 @@
|
||||
################################################################################
|
||||
#
|
||||
# ipmitool
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IPMITOOL_VERSION = 1.8.18
|
||||
IPMITOOL_SOURCE = ipmitool-$(IPMITOOL_VERSION).tar.bz2
|
||||
IPMITOOL_SITE = http://downloads.sourceforge.net/project/ipmitool/ipmitool/$(IPMITOOL_VERSION)
|
||||
IPMITOOL_LICENSE = BSD-3c
|
||||
IPMITOOL_LICENSE_FILES = COPYING
|
||||
|
||||
ifeq ($(BR2_PACKAGE_IPMITOOL_LANPLUS),y)
|
||||
IPMITOOL_DEPENDENCIES += openssl
|
||||
IPMITOOL_CONF_OPTS += --enable-intf-lanplus
|
||||
else
|
||||
IPMITOOL_CONF_OPTS += --disable-intf-lanplus
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_IPMITOOL_IPMISHELL),y)
|
||||
IPMITOOL_DEPENDENCIES += ncurses readline
|
||||
IPMITOOL_CONF_OPTS += --enable-ipmishell
|
||||
else
|
||||
IPMITOOL_CONF_OPTS += --disable-ipmishell
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_IPMITOOL_IPMIEVD),)
|
||||
define IPMITOOL_REMOVE_IPMIEVD
|
||||
$(RM) -f $(TARGET_DIR)/usr/sbin/ipmievd
|
||||
endef
|
||||
IPMITOOL_POST_INSTALL_TARGET_HOOKS += IPMITOOL_REMOVE_IPMIEVD
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user