[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1383609995-8251-2-git-send-email-eric.miao@nvidia.com>
Date: Mon, 4 Nov 2013 16:06:35 -0800
From: Eric Miao <eric.miao@...dia.com>
To: <linux-kernel@...r.kernel.org>
CC: Eric Miao <eric.miao@...dia.com>,
David Howells <dhowells@...hat.com>,
"Dan Willemsen" <dwillemsen@...dia.com>
Subject: [PATCH 2/2] MODSIG: use pre-generated X.509 key by MODPUBKEY
If MODPUBKEY is specified and other than default ./signing_key.x509, use
that key instead of generating one on-the-fly.
Signed-off-by: Eric Miao <eric.miao@...dia.com>
Cc: David Howells <dhowells@...hat.com>
Cc: Dan Willemsen <dwillemsen@...dia.com>
---
kernel/Makefile | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/kernel/Makefile b/kernel/Makefile
index 1ce4755..66c7c32 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -165,6 +165,13 @@ ifndef CONFIG_MODULE_SIG_HASH
$(error Could not determine digest type to use from kernel config)
endif
+ifneq ($(MODPUBKEY),./signing_key.x509)
+signing_key.x509: $(MODPUBKEY)
+ @echo "###"
+ @echo "### Use pre-generated X.509 key pair for signing modules."
+ @echo "###"
+ cp -f $< $@
+else
signing_key.priv signing_key.x509: x509.genkey
@echo "###"
@echo "### Now generating an X.509 key pair to be used for signing modules."
@@ -202,3 +209,4 @@ x509.genkey:
@echo >>x509.genkey "subjectKeyIdentifier=hash"
@echo >>x509.genkey "authorityKeyIdentifier=keyid"
endif
+endif
--
1.8.4.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists