aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Marek2013-01-24 21:11:31 -0600
committerRusty Russell2013-01-25 00:25:37 -0600
commitd9d8d7ed498ec65bea72dd24be7b9cd35af0c200 (patch)
treed2d9721c2e64a941f22a7c4a4611a53155d9ec36 /Makefile
parent1c37c054a7493e0537ea3d15a59dac3a0aa63a05 (diff)
downloadkernel-d9d8d7ed498ec65bea72dd24be7b9cd35af0c200.tar.gz
kernel-d9d8d7ed498ec65bea72dd24be7b9cd35af0c200.tar.xz
kernel-d9d8d7ed498ec65bea72dd24be7b9cd35af0c200.zip
MODSIGN: Add option to not sign modules during modules_install
To allow the builder to sign only a subset of modules, or to sign the modules using a key that is not available on the build machine, add CONFIG_MODULE_SIG_ALL. If this option is unset, no modules will be signed during build. The default is 'y', to preserve the current behavior. Signed-off-by: Michal Marek <mmarek@suse.cz> Acked-by: David Howells <dhowells@redhat.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 77ea707d8543..8e9f9efc5b39 100644
--- a/Makefile
+++ b/Makefile
@@ -719,7 +719,7 @@ endif # INSTALL_MOD_STRIP
719export mod_strip_cmd 719export mod_strip_cmd
720 720
721 721
722ifeq ($(CONFIG_MODULE_SIG),y) 722ifdef CONFIG_MODULE_SIG_ALL
723MODSECKEY = ./signing_key.priv 723MODSECKEY = ./signing_key.priv
724MODPUBKEY = ./signing_key.x509 724MODPUBKEY = ./signing_key.x509
725export MODPUBKEY 725export MODPUBKEY