From 2535bdea47c46d6d475b8dbf6527374d2358b1ef Mon Sep 17 00:00:00 2001 From: Tom Jones Date: Thu, 1 Feb 2024 16:07:54 +0000 Subject: dpdk: Disable building FreeBSD kernel modules Disable building the FreeBSD kernel modules, while these are required to run, this dpdk step will fails inside the vpp build. If the build succeeded this step would try to install the kernel modules as root in the vpp build which also isn't desirable. For packaging the kernel modules should be provided in a seperate package rather than through the vpp build process. Type: improvement Change-Id: I01f1ae2845445e2babad380b675054b80d4b325b Signed-off-by: Tom Jones --- build/external/packages/dpdk.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/build/external/packages/dpdk.mk b/build/external/packages/dpdk.mk index 2c5a9030275..f72f338b6fd 100644 --- a/build/external/packages/dpdk.mk +++ b/build/external/packages/dpdk.mk @@ -172,6 +172,7 @@ DPDK_MESON_ARGS = \ -Db_pie=true \ -Dmachine=$(DPDK_MACHINE) \ --buildtype=$(DPDK_BUILD_TYPE) \ + -Denable_kmods=false \ ${DPDK_MLX_CONFIG_FLAG} PIP_DOWNLOAD_DIR = $(CURDIR)/downloads/ -- cgit 1.2.3-korg