aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Thompson <[email protected]>2015-02-17 13:47:38 -0800
committerLinus Torvalds <[email protected]>2015-02-17 14:34:54 -0800
commit2478a8a15ccaddd68e84bb8791cd468f636673e9 (patch)
treebfd327e6c9d9bd6904d316a5e2479b6e3adbce7d
parent276d97d90a2485f9a830a7a8242e4317b24c896f (diff)
scripts/gdb: ignore byte-compiled python files
Using the gdb scripts leaves byte-compiled python files in the scripts/ directory. These should be ignored by git. [[email protected]: drop redundant mrproper rule as suggested by Michal] Signed-off-by: Daniel Thompson <[email protected]> Signed-off-by: Jan Kiszka <[email protected]> Cc: Michal Marek <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: Jason Wessel <[email protected]> Cc: Andi Kleen <[email protected]> Cc: Ben Widawsky <[email protected]> Cc: Borislav Petkov <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--.gitignore1
-rw-r--r--scripts/gdb/linux/.gitignore2
2 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 9ac91060ea64..acb6afe6b7a3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -43,6 +43,7 @@ Module.symvers
/TAGS
/linux
/vmlinux
+/vmlinux-gdb.py
/vmlinuz
/System.map
/Module.markers
diff --git a/scripts/gdb/linux/.gitignore b/scripts/gdb/linux/.gitignore
new file mode 100644
index 000000000000..52e4e61140d1
--- /dev/null
+++ b/scripts/gdb/linux/.gitignore
@@ -0,0 +1,2 @@
+*.pyc
+*.pyo