bd2318df7b
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>
24 lines
791 B
Makefile
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))
|