update buildroot to 2017.02.11
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
configure: do not build doc
|
||||
|
||||
Fixes:
|
||||
http://autobuild.buildroot.org/results/2ec/2ecfb1143ba89ffa5cdc8096bb175b2c396c4670/
|
||||
http://autobuild.buildroot.org/results/c49/c497fc446140694084922d51fe6be308ce5c1c1a/
|
||||
http://autobuild.buildroot.org/results/434/434b156b5c9b5c7b65ffe6174cf4e029e7e3ffd8/
|
||||
|
||||
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 344b27a71a35..41b6ea89167a 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -56,7 +56,7 @@ LIB_DIR="/usr/lib"
|
||||
isredhat=0
|
||||
init_scripts="scripts/ipmi_port.sh scripts/ipmiutil_evt scripts/ipmiutil_asy scripts/ipmiutil_wdt"
|
||||
projdir=`pwd`
|
||||
-SUBDIR_S="doc scripts lib util"
|
||||
+SUBDIR_S="scripts lib util"
|
||||
os=Linux
|
||||
|
||||
# ltmain.sh, config.sub, et al should have been created, but check to be sure.
|
||||
@@ -162,7 +162,7 @@ AC_ARG_ENABLE([standalone],
|
||||
LANPLUS_SAM="no"
|
||||
LD_SAMX=""
|
||||
CFLAGS="-O2"
|
||||
- SUBDIR_S="doc scripts util"
|
||||
+ SUBDIR_S="scripts util"
|
||||
if test "x$cross_compiling" = "xyes"; then
|
||||
# cross-compiling, so link with -static (e.g. Android ARM)
|
||||
CROSS_LFLAGS="-static"
|
||||
18
bsp/buildroot-2017.02.11/package/ipmiutil/Config.in
Normal file
18
bsp/buildroot-2017.02.11/package/ipmiutil/Config.in
Normal file
@@ -0,0 +1,18 @@
|
||||
config BR2_PACKAGE_IPMIUTIL
|
||||
bool "ipmiutil"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_STATIC_LIBS
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_x86_64 || BR2_i386
|
||||
help
|
||||
The ipmiutil package provides easy-to-use utilities to view
|
||||
the SEL, perform an IPMI chassis reset, set up the IPMI LAN
|
||||
and Platform Event Filter entries to allow SNMP alerts,
|
||||
Serial-Over-LAN console, event daemon, and other IPMI tasks.
|
||||
|
||||
http://ipmiutil.sourceforge.net/
|
||||
|
||||
comment "ipmiutil needs a toolchain w/ threads, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
depends on BR2_x86_64 || BR2_i386
|
||||
4
bsp/buildroot-2017.02.11/package/ipmiutil/ipmiutil.hash
Normal file
4
bsp/buildroot-2017.02.11/package/ipmiutil/ipmiutil.hash
Normal file
@@ -0,0 +1,4 @@
|
||||
# From http://sourceforge.net/projects/ipmiutil/files/?source=navbar
|
||||
sha1 f423a77a374b6a37a16496844f1e6e363e7d63fe ipmiutil-2.9.9.tar.gz
|
||||
# Locally computed
|
||||
sha256 beace08386a002c6a4bbbf894bda9899ea34fae4c2181c89f29fb1fa136925f6 ipmiutil-2.9.9.tar.gz
|
||||
27
bsp/buildroot-2017.02.11/package/ipmiutil/ipmiutil.mk
Normal file
27
bsp/buildroot-2017.02.11/package/ipmiutil/ipmiutil.mk
Normal file
@@ -0,0 +1,27 @@
|
||||
################################################################################
|
||||
#
|
||||
# ipmiutil
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IPMIUTIL_VERSION = 2.9.9
|
||||
IPMIUTIL_SITE = http://sourceforge.net/projects/ipmiutil/files
|
||||
IPMIUTIL_LICENSE = BSD-3c
|
||||
IPMIUTIL_LICENSE_FILES = COPYING
|
||||
# We're patching configure.ac
|
||||
IPMIUTIL_AUTORECONF = YES
|
||||
|
||||
IPMIUTIL_MAKE = $(MAKE1)
|
||||
|
||||
# forgets to link against libcrypto dependencies breaking static link
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL)x$(BR2_STATIC_LIBS),yx)
|
||||
# tests against distro libcrypto so it might get a false positive when
|
||||
# the openssl version is old, so force it off
|
||||
# SKIP_MD2 can be used only if ALLOW_GNU is defined.
|
||||
IPMIUTIL_CONF_OPTS += CPPFLAGS="$(TARGET_CPPFLAGS) -DALLOW_GNU -DSKIP_MD2"
|
||||
IPMIUTIL_DEPENDENCIES += openssl
|
||||
else
|
||||
IPMIUTIL_CONF_OPTS += --disable-lanplus
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user