The patch titled Subject: scripts/gdb: ignore byte-compiled python files has been added to the -mm tree. Its filename is scripts-gdb-ignore-byte-compiled-python-files.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/scripts-gdb-ignore-byte-compiled-python-files.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/scripts-gdb-ignore-byte-compiled-python-files.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Daniel Thompson <daniel.thompson@xxxxxxxxxx> Subject: 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@xxxxxxxxxxx: drop redundant mrproper rule as suggested by Michal] Signed-off-by: Daniel Thompson <daniel.thompson@xxxxxxxxxx> Signed-off-by: Jan Kiszka <jan.kiszka@xxxxxxxxxxx> Cc: Michal Marek <mmarek@xxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Jason Wessel <jason.wessel@xxxxxxxxxxxxx> Cc: Andi Kleen <andi@xxxxxxxxxxxxxx> Cc: Ben Widawsky <ben@xxxxxxxxxxxx> Cc: Borislav Petkov <bp@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- .gitignore | 1 + scripts/gdb/linux/.gitignore | 2 ++ 2 files changed, 3 insertions(+) diff -puN .gitignore~scripts-gdb-ignore-byte-compiled-python-files .gitignore --- a/.gitignore~scripts-gdb-ignore-byte-compiled-python-files +++ a/.gitignore @@ -43,6 +43,7 @@ Module.symvers /TAGS /linux /vmlinux +/vmlinux-gdb.py /vmlinuz /System.map /Module.markers diff -puN /dev/null scripts/gdb/linux/.gitignore --- /dev/null +++ a/scripts/gdb/linux/.gitignore @@ -0,0 +1,2 @@ +*.pyc +*.pyo _ Patches currently in -mm which might be from daniel.thompson@xxxxxxxxxx are debug-prevent-entering-debug-mode-on-panic-exception.patch scripts-gdb-ignore-byte-compiled-python-files.patch linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html