hc
2023-12-06 d38611ca164021d018c1b23eee65bbebc09c63e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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 = "GPLv2"
DEPENDS = "binutils elfutils"
PROVIDES = "virtual/bpftool"
 
inherit bash-completion kernelsrc kernel-arch
 
do_populate_lic[depends] += "virtual/kernel:do_patch"
 
EXTRA_OEMAKE = "\
    V=1 \
    -C ${S}/tools/bpf/bpftool \
    O=${B} \
    CROSS=${TARGET_PREFIX} \
    CC="${CC} ${DEBUG_PREFIX_MAP} -fdebug-prefix-map=${STAGING_KERNEL_DIR}=${KERNEL_SRC_PATH}" \
    LD="${LD}" \
    AR=${AR} \
    ARCH=${ARCH} \
"
 
SECURITY_CFLAGS = ""
 
do_configure[depends] += "virtual/kernel:do_shared_workdir"
 
COMPATIBLE_HOST = "(x86_64).*-linux"
COMPATIBLE_HOST:libc-musl = 'null'
 
do_compile() {
    oe_runmake
}
 
do_install() {
    oe_runmake DESTDIR=${D} install
}
 
PACKAGE_ARCH = "${MACHINE_ARCH}"
 
python do_package:prepend() {
    d.setVar('PKGV', d.getVar("KERNEL_VERSION").split("-")[0])
}
 
B = "${WORKDIR}/${BPN}-${PV}"