Message ID | 1556548391-14520-1-git-send-email-yamada.masahiro@socionext.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | sh: exclude vmlinux.scr from .gitignore pattern | expand |
diff --git a/arch/sh/boot/.gitignore b/arch/sh/boot/.gitignore index 541087d..f50fdd9 100644 --- a/arch/sh/boot/.gitignore +++ b/arch/sh/boot/.gitignore @@ -1,3 +1,4 @@ zImage vmlinux* uImage* +!vmlinux.scr
arch/sh/boot/.gitignore has the pattern "vmlinux*"; this is effective not only for the current directory, but also for any sub-directories. So, the following files are also considered to be ignored: arch/sh/boot/compressed/vmlinux.scr arch/sh/boot/romimage/vmlinux.scr They are obviously version-controlled, so should be excluded from the .gitignore pattern. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> --- arch/sh/boot/.gitignore | 1 + 1 file changed, 1 insertion(+)