663f39c88c
FreeIPMI provides in-band and out-of-band IPMI software based on the IPMI v1.5/2.0 specification. The IPMI specification defines a set of interfaces for platform management and is implemented by a number vendors for system management. The features of IPMI that most users will be interested in are sensor monitoring, system event monitoring, power control, and serial-over-LAN (SOL). https://www.gnu.org/software/freeipmi/ Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# freeipmi
|
|
#
|
|
################################################################################
|
|
|
|
FREEIPMI_VERSION = 1.6.8
|
|
FREEIPMI_SITE = https://ftp.gnu.org/gnu/freeipmi
|
|
FREEIPMI_LICENSE = GPL-3.0+, BSD-like (sunbmc)
|
|
FREEIPMI_LICENSE_FILES = \
|
|
COPYING COPYING.bmc-watchdog COPYING.ipmiconsole COPYING.ipmi-dcmi \
|
|
COPYING.ipmidetect COPYING.ipmi-fru COPYING.ipmimonitoring \
|
|
COPYING.ipmiping COPYING.ipmipower COPYING.ipmiseld COPYING.pstdout \
|
|
COPYING.sunbmc COPYING.ZRESEARCH
|
|
FREEIPMI_DEPENDENCIES = host-pkgconf
|
|
FREEIPMI_INSTALL_STAGING = YES
|
|
# We're patching configure.ac
|
|
FREEIPMI_AUTORECONF = YES
|
|
# Disable checking for /dev/urandom and /dev/random through AC_CHECK_FILE
|
|
FREEIPMI_CONF_OPTS = --without-random-device
|
|
|
|
# Work around for uClibc or musl toolchains which lack argp_*()
|
|
# functions.
|
|
ifeq ($(BR2_PACKAGE_ARGP_STANDALONE),y)
|
|
FREEIPMI_DEPENDENCIES += argp-standalone
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
|
FREEIPMI_CONF_OPTS += --with-encryption
|
|
FREEIPMI_DEPENDENCIES += libgcrypt
|
|
else
|
|
FREEIPMI_CONF_OPTS += --without-encryption
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|