diff options
| author | Gyorgy Sarvari <skandigraun@gmail.com> | 2026-03-20 11:45:27 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-03-20 07:59:33 -0700 |
| commit | b39b884b3f691003c58624552866e518155bc56f (patch) | |
| tree | 7780a3607f101f663ed9f14874abb55b0bdb5d31 | |
| parent | 9b9fbd85c7c90bf060fda5b2b3ffbbc65cb06728 (diff) | |
| download | meta-openembedded-b39b884b3f691003c58624552866e518155bc56f.tar.gz | |
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 <openssl/opensslv.h>
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-kernel/bpftool/bpftool.bb | 2 |
1 files changed, 1 insertions, 1 deletions
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" | |||
| 2 | DESCRIPTION = "bpftool is a kernel tool for inspection and simple manipulation \ | 2 | DESCRIPTION = "bpftool is a kernel tool for inspection and simple manipulation \ |
| 3 | of eBPF programs and maps." | 3 | of eBPF programs and maps." |
| 4 | LICENSE = "GPL-2.0-only" | 4 | LICENSE = "GPL-2.0-only" |
| 5 | DEPENDS = "binutils elfutils elfutils-native" | 5 | DEPENDS = "binutils elfutils elfutils-native openssl" |
| 6 | PROVIDES = "virtual/bpftool" | 6 | PROVIDES = "virtual/bpftool" |
| 7 | 7 | ||
| 8 | inherit bash-completion kernelsrc kernel-arch | 8 | inherit bash-completion kernelsrc kernel-arch |
