mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
See the release notes of the new versions: https://github.com/DPDK/grout/releases/tag/v0.16.0 https://github.com/DPDK/grout/releases/tag/v0.16.1 https://github.com/DPDK/grout/releases/tag/v0.16.2 Signed-off-by: Maxime Leroy <maxime@leroys.fr> Acked-by: Vincent Jardin <vjardin@free.fr> Signed-off-by: Julien Olivain <ju.o@free.fr>
30 lines
701 B
Makefile
30 lines
701 B
Makefile
################################################################################
|
|
#
|
|
# grout
|
|
#
|
|
################################################################################
|
|
|
|
GROUT_VERSION = 0.16.2
|
|
GROUT_SITE = $(call github,DPDK,grout,v$(GROUT_VERSION))
|
|
GROUT_LICENSE = BSD-3-Clause
|
|
GROUT_LICENSE_FILES = licenses/BSD-3-clause.txt
|
|
|
|
# Avoid using buildroot commit hash
|
|
GROUT_CONF_ENV = GROUT_VERSION=$(GROUT_VERSION)
|
|
|
|
GROUT_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
dpdk \
|
|
libevent \
|
|
libmnl \
|
|
numactl \
|
|
libecoli
|
|
|
|
define GROUT_LINUX_CONFIG_FIXUPS
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_TUN)
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_NET_L3_MASTER)
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_VRF)
|
|
endef
|
|
|
|
$(eval $(meson-package))
|