aboutsummaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
Diffstat (limited to 'init')
-rw-r--r--init/Kconfig20
1 files changed, 20 insertions, 0 deletions
diff --git a/init/Kconfig b/init/Kconfig
index 28c5b9dcc91e..968c539f0ac3 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -1670,6 +1670,17 @@ config MODULE_SIG_FORCE
1670 Reject unsigned modules or signed modules for which we don't have a 1670 Reject unsigned modules or signed modules for which we don't have a
1671 key. Without this, such modules will simply taint the kernel. 1671 key. Without this, such modules will simply taint the kernel.
1672 1672
1673config MODULE_SIG_ALL
1674 bool "Automatically sign all modules"
1675 default y
1676 depends on MODULE_SIG
1677 help
1678 Sign all modules during make modules_install. Without this option,
1679 modules must be signed manually, using the scripts/sign-file tool.
1680
1681comment "Do not forget to sign required modules with scripts/sign-file"
1682 depends on MODULE_SIG_FORCE && !MODULE_SIG_ALL
1683
1673choice 1684choice
1674 prompt "Which hash algorithm should modules be signed with?" 1685 prompt "Which hash algorithm should modules be signed with?"
1675 depends on MODULE_SIG 1686 depends on MODULE_SIG
@@ -1702,6 +1713,15 @@ config MODULE_SIG_SHA512
1702 1713
1703endchoice 1714endchoice
1704 1715
1716config MODULE_SIG_HASH
1717 string
1718 depends on MODULE_SIG
1719 default "sha1" if MODULE_SIG_SHA1
1720 default "sha224" if MODULE_SIG_SHA224
1721 default "sha256" if MODULE_SIG_SHA256
1722 default "sha384" if MODULE_SIG_SHA384
1723 default "sha512" if MODULE_SIG_SHA512
1724
1705endif # MODULES 1725endif # MODULES
1706 1726
1707config INIT_ALL_POSSIBLE 1727config INIT_ALL_POSSIBLE