Here's a set of patches that moves the certificate handling to its own
directory rather than sharing in the kernel/ directory.  We then move key
generation into the certs/ directory rather than doing it in the root.

This allows us to simplify the kernel/Makefile and slightly simplify the
new certs/Makefile.  It also keeps the various generated files in the same
place to make them easier to find and clean up.

The patches can be found here also:

        
http://git.kernel.org/cgit/linux/kernel/git/dhowells/linux-fs.git/log/?h=modsign-pkcs7

and are tagged with:

        modsign-pkcs7-20150814

David
---
David Howells (1):
      Move certificate handling to its own directory

David Woodhouse (2):
      modsign: Use if_changed rule for extracting cert from module signing key
      modsign: Handle signing key in source tree


 Documentation/module-signing.txt |   18 ++--
 MAINTAINERS                      |    9 ++
 Makefile                         |    9 +-
 certs/Kconfig                    |   42 ++++++++++
 certs/Makefile                   |   94 +++++++++++++++++++++++
 certs/system_certificates.S      |   23 ++++++
 certs/system_keyring.c           |  157 ++++++++++++++++++++++++++++++++++++++
 crypto/Kconfig                   |    1 
 init/Kconfig                     |   39 ---------
 kernel/Makefile                  |  143 -----------------------------------
 kernel/system_certificates.S     |   23 ------
 kernel/system_keyring.c          |  157 --------------------------------------
 scripts/Kbuild.include           |   51 ++++++++++++
 13 files changed, 390 insertions(+), 376 deletions(-)
 create mode 100644 certs/Kconfig
 create mode 100644 certs/Makefile
 create mode 100644 certs/system_certificates.S
 create mode 100644 certs/system_keyring.c
 delete mode 100644 kernel/system_certificates.S
 delete mode 100644 kernel/system_keyring.c

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to