diff mbox series

[meta-oe] layer.conf: add bpftool into NON_MULTILIB_RECIPES

Message ID 20251027081225.717064-1-changqing.li@windriver.com
State Under Review
Headers show
Series [meta-oe] layer.conf: add bpftool into NON_MULTILIB_RECIPES | expand

Commit Message

Changqing Li Oct. 27, 2025, 8:12 a.m. UTC
From: Changqing Li <changqing.li@windriver.com>

Here is the setting in bpftool recipe:
COMPATIBLE_HOST = "(x86_64|aarch64|riscv64).*-linux"

bpftool only support 64 bit arch, so add it into NON_MULTILIB_RECIPES
to avoid expanding lib32- variant

Signed-off-by: Changqing Li <changqing.li@windriver.com>
---
 meta-oe/conf/layer.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta-oe/conf/layer.conf b/meta-oe/conf/layer.conf
index 56aea73b15..851219765e 100644
--- a/meta-oe/conf/layer.conf
+++ b/meta-oe/conf/layer.conf
@@ -118,7 +118,7 @@  SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
 
 DEFAULT_TEST_SUITES:pn-meta-oe-ptest-image = " ${PTESTTESTSUITE}"
 
-NON_MULTILIB_RECIPES:append = " crash pahole libbpf bpftrace"
+NON_MULTILIB_RECIPES:append = " crash pahole libbpf bpftrace bpftool"
 
 NON_MULTILIB_RECIPES:remove:x86 = "libbpf"
 NON_MULTILIB_RECIPES:remove:x86-64 = "libbpf"