diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2021-04-26 20:48:07 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-07-20 17:05:35 +0300 |
commit | b93f9499427cf15ee39877c43052ed26527e59ff (patch) | |
tree | 3cea9be7770ffcb2eed350d4291ef17e5b23b5fa /certs | |
parent | f68261346518c970aea06e6fb3eb031247340400 (diff) | |
download | linux-b93f9499427cf15ee39877c43052ed26527e59ff.tar.xz |
certs: add 'x509_revocation_list' to gitignore
commit 81f202315856edb75a371f3376aa3a47543c16f0 upstream.
Commit d1f044103dad ("certs: Add ability to preload revocation certs")
created a new generated file for revocation certs, but didn't tell git
to ignore it. Thus causing unnecessary "git status" noise after a
kernel build with CONFIG_SYSTEM_REVOCATION_LIST enabled.
Add the proper gitignore magic.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'certs')
-rw-r--r-- | certs/.gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/certs/.gitignore b/certs/.gitignore index 2a2483990686..6cbd1f1a5837 100644 --- a/certs/.gitignore +++ b/certs/.gitignore @@ -1,2 +1,3 @@ # SPDX-License-Identifier: GPL-2.0-only x509_certificate_list +x509_revocation_list |