From ba323d198f017e505dbb21b130a6d386f905f2ff Mon Sep 17 00:00:00 2001 From: Gyorgy Sarvari Date: Fri, 20 Mar 2026 11:45:27 +0100 Subject: [PATCH] bpftool: add missing build dependency Add openssl as a dependency. Fixes compilation error: | sign.c:16:10: fatal error: openssl/opensslv.h: No such file or directory | 16 | #include Signed-off-by: Gyorgy Sarvari Signed-off-by: Khem Raj --- meta-oe/recipes-kernel/bpftool/bpftool.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-kernel/bpftool/bpftool.bb b/meta-oe/recipes-kernel/bpftool/bpftool.bb index 4f4d4a8670..66e48cfd84 100644 --- a/meta-oe/recipes-kernel/bpftool/bpftool.bb +++ b/meta-oe/recipes-kernel/bpftool/bpftool.bb @@ -2,7 +2,7 @@ SUMMARY = "Inspect and manipulate eBPF programs and maps" DESCRIPTION = "bpftool is a kernel tool for inspection and simple manipulation \ of eBPF programs and maps." LICENSE = "GPL-2.0-only" -DEPENDS = "binutils elfutils elfutils-native" +DEPENDS = "binutils elfutils elfutils-native openssl" PROVIDES = "virtual/bpftool" inherit bash-completion kernelsrc kernel-arch