diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2015-10-21 14:04:47 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2015-10-21 15:18:35 +0100 |
commit | 48dbc164b40dd9195dea8cd966e394819e420b64 (patch) | |
tree | 8a3dea5bb26df7fb83e268025879e29c9b56d65b | |
parent | d0e0eba043c78b1d6ce3d29367abb41446d83747 (diff) | |
download | op-kernel-dev-48dbc164b40dd9195dea8cd966e394819e420b64.zip op-kernel-dev-48dbc164b40dd9195dea8cd966e394819e420b64.tar.gz |
certs: add .gitignore to stop git nagging about x509_certificate_list
Currently we see this in "git status" if we build in the source dir:
Untracked files:
(use "git add <file>..." to include in what will be committed)
certs/x509_certificate_list
It looks like it used to live in kernel/ so we squash that .gitignore
entry at the same time. I didn't bother to dig through git history to
see when it moved, since it is just a minor annoyance at most.
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: keyrings@linux-nfs.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: David Howells <dhowells@redhat.com>
-rw-r--r-- | certs/.gitignore | 4 | ||||
-rw-r--r-- | kernel/.gitignore | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/certs/.gitignore b/certs/.gitignore new file mode 100644 index 0000000..f51aea4 --- /dev/null +++ b/certs/.gitignore @@ -0,0 +1,4 @@ +# +# Generated files +# +x509_certificate_list diff --git a/kernel/.gitignore b/kernel/.gitignore index 790d83c..b3097bd 100644 --- a/kernel/.gitignore +++ b/kernel/.gitignore @@ -5,4 +5,3 @@ config_data.h config_data.gz timeconst.h hz.bc -x509_certificate_list |