c19cca0452
Now that we document _CPE_ID_VALID, and that it shall be used instead of setting a default value to one of the other _CPE_ID_* variables, change all of the existing packages to use it, to avoid any error when we later extend check-package to validate the sanity ofthe _CPE_ID_* variables. Mechanical change done within the reference container, running the new check in check-package, to report the CPE_ID errors: $ make check-package 2>/dev/null \ |awk '{ split($(1), a, ":"); fname = a[1] split($(2), a, "'\''"); val = a[2] new_var = $(8); gsub("_CPE_ID_.*", "_CPE_ID_VALID", new_var) printf("%s %s %s %s\n", fname, $(8), val, new_var) }' \ |while read fname var val new_var; do sed -r -i -e "s/${var}[[:space:]]*=[[:space:]]*${val}/${new_var} = YES/" "${fname}" done $ git diff -I'CPE_ID_(VENDOR|VALID)' [empty] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
69 lines
1.9 KiB
Makefile
69 lines
1.9 KiB
Makefile
################################################################################
|
|
#
|
|
# ipmitool
|
|
#
|
|
################################################################################
|
|
|
|
IPMITOOL_VERSION = 1_8_19
|
|
IPMITOOL_SITE = $(call github,ipmitool,ipmitool,IPMITOOL_$(IPMITOOL_VERSION))
|
|
IPMITOOL_LICENSE = BSD-3-Clause
|
|
IPMITOOL_LICENSE_FILES = COPYING
|
|
IPMITOOL_CPE_ID_VALID = YES
|
|
# From git
|
|
IPMITOOL_AUTORECONF = YES
|
|
IPMITOOL_DEPENDENCIES = host-pkgconf
|
|
|
|
IPMITOOL_CONF_OPTS = --disable-registry-download
|
|
|
|
ifeq ($(BR2_PACKAGE_FREEIPMI),y)
|
|
IPMITOOL_DEPENDENCIES += freeipmi
|
|
IPMITOOL_CONF_OPTS += --enable-intf-free
|
|
else
|
|
IPMITOOL_CONF_OPTS += --disable-intf-free
|
|
endif
|
|
|
|
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_USB),y)
|
|
IPMITOOL_CONF_OPTS += --enable-intf-usb
|
|
else
|
|
IPMITOOL_CONF_OPTS += --disable-intf-usb
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_IPMITOOL_IPMISHELL),y)
|
|
IPMITOOL_DEPENDENCIES += 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
|
|
|
|
IPMITOOL_PEN_REG_URI = $(call qstrip,$(BR2_PACKAGE_IPMITOOL_PEN_REG_URI))
|
|
ifneq ($(IPMITOOL_PEN_REG_URI),)
|
|
ifneq ($(findstring ://,$(IPMITOOL_PEN_REG_URI)),)
|
|
IPMITOOL_EXTRA_DOWNLOADS += $(IPMITOOL_PEN_REG_URI)
|
|
BR_NO_CHECK_HASH_FOR += $(notdir $(IPMITOOL_PEN_REG_URI))
|
|
IPMITOOL_PEN_REG = $(IPMITOOL_DL_DIR)/$(notdir $(IPMITOOL_PEN_REG_URI))
|
|
else
|
|
IPMITOOL_PEN_REG = $(IPMITOOL_PEN_REG_URI)
|
|
endif #findstring
|
|
define IPMITOOL_INSTALL_PEN_REG
|
|
$(INSTALL) -D -m 0644 $(IPMITOOL_PEN_REG) \
|
|
$(TARGET_DIR)/usr/share/misc/enterprise-numbers
|
|
endef
|
|
IPMITOOL_POST_INSTALL_TARGET_HOOKS += IPMITOOL_INSTALL_PEN_REG
|
|
endif # IPMITOOL_PEN_REG_URI !empty
|
|
|
|
$(eval $(autotools-package))
|