From: Arnaldo Carvalho de Melo Date: Tue, 14 Mar 2023 11:41:36 +0000 (-0300) Subject: perf tools bpf: Add vmlinux.h to .gitignore X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0e70f50e72860f84759b62dae877c48523d33255;p=linux.git perf tools bpf: Add vmlinux.h to .gitignore Now that BPF skel based tools will be built by default if the toolchain pieces that are needed are available, building directly on the source tree will produce a vmlinux.h from the BTF info that needs to get ignored. Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/bpf_skel/.gitignore b/tools/perf/util/bpf_skel/.gitignore index 5263e9e6c5d83..cd01455e1b53c 100644 --- a/tools/perf/util/bpf_skel/.gitignore +++ b/tools/perf/util/bpf_skel/.gitignore @@ -1,3 +1,4 @@ # SPDX-License-Identifier: GPL-2.0-only .tmp -*.skel.h \ No newline at end of file +*.skel.h +vmlinux.h