diff options
| -rw-r--r-- | meta-oe/recipes-kernel/bpftool/bpftool.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-kernel/bpftool/bpftool.bb b/meta-oe/recipes-kernel/bpftool/bpftool.bb new file mode 100644 index 0000000000..fd0653ab87 --- /dev/null +++ b/meta-oe/recipes-kernel/bpftool/bpftool.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | SUMMARY = "Inspect and manipulate eBPF programs and maps" | ||
| 2 | DESCRIPTION = "bpftool is a kernel tool for inspection and simple manipulation \ | ||
| 3 | of eBPF programs and maps." | ||
| 4 | LICENSE = "GPLv2" | ||
| 5 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" | ||
| 6 | DEPENDS = "binutils elfutils" | ||
| 7 | PROVIDES = "virtual/bpftool" | ||
| 8 | |||
| 9 | inherit bash-completion kernelsrc kernel-arch | ||
| 10 | |||
| 11 | do_populate_lic[depends] += "virtual/kernel:do_patch" | ||
| 12 | |||
| 13 | EXTRA_OEMAKE = "-C ${S}/tools/bpf/bpftool O=${B} CROSS=${TARGET_PREFIX} CC="${CC}" LD="${LD}" AR=${AR} ARCH=${ARCH}" | ||
| 14 | |||
| 15 | do_configure[depends] += "virtual/kernel:do_shared_workdir" | ||
| 16 | |||
| 17 | do_compile() { | ||
| 18 | oe_runmake | ||
| 19 | } | ||
| 20 | |||
| 21 | do_install() { | ||
| 22 | oe_runmake DESTDIR=${D} install | ||
| 23 | } | ||
| 24 | |||
| 25 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 26 | |||
| 27 | python do_package_prepend() { | ||
| 28 | d.setVar('PKGV', d.getVar("KERNEL_VERSION", True).split("-")[0]) | ||
| 29 | } | ||
| 30 | |||
| 31 | B = "${WORKDIR}/${BPN}-${PV}" | ||
