aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2015-01-13 16:24:00 -0500
committerDavid Howells <dhowells@redhat.com>2015-01-23 07:10:39 -0500
commit89f703f0932341b316b2312581dacddba14b3876 (patch)
tree71d47c28edbed9608bc13b4746f41a1cdd63c0b2 /kernel
parentdabd39cc2fb1b0e97313ebbe7309ea8e05b7cfb5 (diff)
X.509: shut up about included cert for silent build
Every kernel build that includes X.509 support prints out a message like - Including cert signing_key.x509 This may be useful for some cases, but when doing automated build tests, it just means noise. To hide the message, this uses '$(kecho)' for printing the message, which means we still see it when building with V=1, but not at the normal level or when building with 'make -s'. Signed-off-by: Arnd Bergmann <arnd@arnd.de> Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/Makefile b/kernel/Makefile
index a59481a3fa6c..23e17a7e7a63 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -142,7 +142,7 @@ endif
142kernel/system_certificates.o: $(obj)/x509_certificate_list 142kernel/system_certificates.o: $(obj)/x509_certificate_list
143 143
144quiet_cmd_x509certs = CERTS $@ 144quiet_cmd_x509certs = CERTS $@
145 cmd_x509certs = cat $(X509_CERTIFICATES) /dev/null >$@ $(foreach X509,$(X509_CERTIFICATES),; echo " - Including cert $(X509)") 145 cmd_x509certs = cat $(X509_CERTIFICATES) /dev/null >$@ $(foreach X509,$(X509_CERTIFICATES),; $(kecho) " - Including cert $(X509)")
146 146
147targets += $(obj)/x509_certificate_list 147targets += $(obj)/x509_certificate_list
148$(obj)/x509_certificate_list: $(X509_CERTIFICATES) $(obj)/.x509.list 148$(obj)/x509_certificate_list: $(X509_CERTIFICATES) $(obj)/.x509.list