Skip to content

Commit 711ebf3

Browse files
committed
gitignore: cover run/results, build metadata, and module products
The runner writes run/results/ (the file listed run/rst/), and neither src/.buildflags (generated by the Makefile) nor out-of-tree kernel-module build products were ignored. Add them.
1 parent 55f965d commit 711ebf3

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.gitignore

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
*.o
33
*.d
44
src/build-info.h
5+
src/.buildflags
56
src/pact
67

78
# Program output / results
89
*.txt
9-
run/rst/
10+
run/results/
1011

1112
# perf build tree produced by setup/perf/install-perf.sh
1213
setup/perf/linux-5.15-pact/
@@ -19,3 +20,12 @@ setup/perf/linux-5.15-pact/
1920
# Local-only working files (never part of the artifact)
2021
.local/
2122
*.local.md
23+
24+
# out-of-tree kernel-module build products (setup/kernel + baselines)
25+
*.ko
26+
*.mod.c
27+
.*.cmd
28+
Module.symvers
29+
modules.order
30+
baselines/*/linux/
31+
baselines/*/log

0 commit comments

Comments
 (0)