diff options
author | Daniel Thompson <daniel.thompson@linaro.org> | 2015-02-17 16:47:38 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-17 17:34:54 -0500 |
commit | 2478a8a15ccaddd68e84bb8791cd468f636673e9 (patch) | |
tree | bfd327e6c9d9bd6904d316a5e2479b6e3adbce7d | |
parent | 276d97d90a2485f9a830a7a8242e4317b24c896f (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.
[jan.kiszka@siemens.com: drop redundant mrproper rule as suggested by Michal]
Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Cc: Michal Marek <mmarek@suse.cz>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Jason Wessel <jason.wessel@windriver.com>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: Ben Widawsky <ben@bwidawsk.net>
Cc: Borislav Petkov <bp@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | scripts/gdb/linux/.gitignore | 2 |
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 | |||
43 | /TAGS | 43 | /TAGS |
44 | /linux | 44 | /linux |
45 | /vmlinux | 45 | /vmlinux |
46 | /vmlinux-gdb.py | ||
46 | /vmlinuz | 47 | /vmlinuz |
47 | /System.map | 48 | /System.map |
48 | /Module.markers | 49 | /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 @@ | |||
1 | *.pyc | ||
2 | *.pyo | ||