From 8ac4b2a2e66ea29b2f52e85ea4be5522d0fb4582 Mon Sep 17 00:00:00 2001 From: Felix Maurer Date: Fri, 25 Jul 2025 15:01:33 +0200 Subject: [PATCH] Ignore bpf objects in rpminspect annocheck The rpminspect annocheck doesn't work on BPF object files. We therefore disable it for these files. The rpminspect.yaml file in the repo overrides parts of the Red Hat config. Signed-off-by: Felix Maurer --- rpminspect.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 rpminspect.yaml diff --git a/rpminspect.yaml b/rpminspect.yaml new file mode 100644 index 0000000..755724a --- /dev/null +++ b/rpminspect.yaml @@ -0,0 +1,5 @@ +# annocheck doesn't work on BPF objects +annocheck: + ignore: + - /usr/lib64/bpf/*.o + - /usr/share/xdp-tools/*.o