Files
Maxime Leroy c3f7f070e6 package/grout: bump to 0.14.2 version
See the release note of the new versions:
https://github.com/DPDK/grout/releases/tag/v0.14.0
https://github.com/DPDK/grout/releases/tag/v0.14.1
https://github.com/DPDK/grout/releases/tag/v0.14.2

Since v0.14.0, Grout uses the libmnl [1], the dependency are updated in
consequence. Grout also requires VRF support in the kernel, as it creates
a VRF on the Linux side to allow TCP/UDP termination by Linux
applications in different L3 domains. [2]

[1] https://github.com/DPDK/grout/commit/2eb97af1e8
[2] https://github.com/DPDK/grout/commit/391f9fa032

Signed-off-by: Maxime Leroy <maxime@leroys.fr>
Signed-off-by: Julien Olivain <ju.o@free.fr>
2025-12-22 20:59:36 +01:00

30 lines
1.1 KiB
Plaintext

config BR2_PACKAGE_GROUT
bool "grout"
depends on BR2_PACKAGE_DPDK_ARCH_SUPPORTS # dpdk
depends on BR2_TOOLCHAIN_HAS_THREADS # dpdk
depends on BR2_USE_MMU # dpdk, numactl, libecoli, util-linux-smartcols
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # dpdk
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_19 # dpdk
depends on BR2_TOOLCHAIN_USES_GLIBC # dpdk
depends on BR2_TOOLCHAIN_HAS_ATOMIC # numactl
depends on !BR2_STATIC_LIBS # libecoli
depends on BR2_USE_WCHAR # libecoli
select BR2_PACKAGE_DPDK
select BR2_PACKAGE_LIBEVENT
select BR2_PACKAGE_NUMACTL
select BR2_PACKAGE_LIBECOLI
select BR2_PACKAGE_LIBMNL
select BR2_PACKAGE_UTIL_LINUX
select BR2_PACKAGE_UTIL_LINUX_LIBSMARTCOLS
help
Graph router based on DPDK
comment "grout needs a glibc toolchain w/ dynamic library, threads, wchar, gcc >= 4.9, headers >= 4.19"
depends on BR2_USE_MMU
depends on BR2_PACKAGE_DPDK_ARCH_SUPPORTS
depends on BR2_TOOLCHAIN_HAS_ATOMIC
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
!BR2_TOOLCHAIN_USES_GLIBC || \
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_19