Skip to content
Snippets Groups Projects
Commit 178aa03b authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

sh: exclude vmlinux.scr from .gitignore pattern


arch/sh/boot/.gitignore has the pattern "vmlinux*"; this is effective
not only for the current directory, but also for any sub-directories.

So, from the point of .gitignore grammar, the following check-in files
are also considered to be ignored:

  arch/sh/boot/compressed/vmlinux.scr
  arch/sh/boot/romimage/vmlinux.scr

As the manual gitignore(5) says "Files already tracked by Git are not
affected", this is not a problem as far as Git is concerned.

However, Git is not the only program that parses .gitignore because
.gitignore is useful to distinguish build artifacts from source files.

For example, tar(1) supports the --exclude-vcs-ignore option. As of
writing, this option does not work perfectly, but it intends to create
a tarball excluding files specified by .gitignore.

So, I believe it is better to fix this issue.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 5b13f841
No related branches found
No related tags found
No related merge requests found
zImage
vmlinux*
uImage*
!vmlinux.scr
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment