diff options
| author | Tom Rini <[email protected]> | 2021-09-09 10:57:34 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-09-09 11:11:33 -0400 |
| commit | 465bff8b10b7548845b4ddc2b8b373d794e2eef9 (patch) | |
| tree | 5d0f25fb08431f1f98b70d23b7dc962e2a4e38b2 /lib | |
| parent | 4412fd8ba2ce5945d04f4b181a96e05576c46bf2 (diff) | |
Kconfig: Drop duplicate 'select SHA512' instances
When dropping SHA512_ALGO in general, we didn't catch some cases where
an option was selecting both SHA512 and SHA512_ALGO and caused them to
select SHA512 twice. Kconfig doesn't complain, but this is still wrong
and should be corrected.
Fixes: e60e44993120 ("lib: Drop SHA512_ALGO in lieu of SHA512")
Reported-by: Andreas Schwab <[email protected]>
Reviewed-by: Alexandru Gagniuc <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/crypt/Kconfig | 1 | ||||
| -rw-r--r-- | lib/efi_loader/Kconfig | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/lib/crypt/Kconfig b/lib/crypt/Kconfig index 6a500296422..a59d5c7d1d5 100644 --- a/lib/crypt/Kconfig +++ b/lib/crypt/Kconfig @@ -20,7 +20,6 @@ config CRYPT_PW_SHA256 config CRYPT_PW_SHA512 bool "Provide sha512crypt" select SHA512 - select SHA512 help Enables support for the sha512crypt password-hashing algorithm. The prefix is "$6$". diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index 08463251cdf..edd4ae29f16 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -323,7 +323,6 @@ config EFI_TCG2_PROTOCOL depends on TPM_V2 select SHA1 select SHA256 - select SHA512 select SHA384 select SHA512 select HASH |
