From: Linus Torvalds Date: Mon, 26 Apr 2021 17:48:07 +0000 (-0700) Subject: certs: add 'x509_revocation_list' to gitignore X-Git-Tag: v5.12.19~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccc413fa14a9e9fbc8de2c6dbec68e1e20dfae95;p=thirdparty%2Fkernel%2Fstable.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/certs/.gitignore b/certs/.gitignore index 2a24839906863..6cbd1f1a5837b 100644 --- a/certs/.gitignore +++ b/certs/.gitignore @@ -1,2 +1,3 @@ # SPDX-License-Identifier: GPL-2.0-only x509_certificate_list +x509_revocation_list