kumquat-buildroot/package/libteam/libteam.mk
Fabrice Fontaine bd2318df7b package/libteam: drop LIBTEAM_CPE_ID_VENDOR
LIBTEAM_CPE_ID_VENDOR was wrongly set since the addition of the package
in commit 7485f5be0c as
cpe:2.3🅰️libteam:libteam is not a valid CPE identifier for this
package:

  https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Alibteam%3Alibteam

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2021-11-05 22:37:10 +01:00

24 lines
791 B
Makefile

################################################################################
#
# libteam
#
################################################################################
LIBTEAM_VERSION = 1.31
LIBTEAM_SITE = $(call github,jpirko,libteam,v$(LIBTEAM_VERSION))
LIBTEAM_LICENSE = LGPL-2.1+
LIBTEAM_LICENSE_FILES = COPYING
LIBTEAM_DEPENDENCIES = host-pkgconf jansson libdaemon libnl
LIBTEAM_AUTORECONF = YES
LIBTEAM_INSTALL_STAGING = YES
# Note: this enables basic team support, use a custom kernel config, or
# fragment, to enable team modes, e.g. activebackup or loadbalance
define LIBTEAM_LINUX_CONFIG_FIXUPS
$(call KCONFIG_ENABLE_OPT,CONFIG_NETDEVICES)
$(call KCONFIG_ENABLE_OPT,CONFIG_NET_CORE)
$(call KCONFIG_ENABLE_OPT,CONFIG_NET_TEAM)
endef
$(eval $(autotools-package))