mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
spl: crypto: fix including SHA* object files in SPL
If one of SHA* algorithms is disabled in u-boot, its code is not
included in SPL even if a given SHA* option is enabled in SPL. Fix
this.
Fixes: 603d15a572
("spl: cypto: Bring back SPL_ versions of SHA")
Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@foundries.io>
Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
04f7e95385
commit
70bd471984
1 changed files with 3 additions and 3 deletions
|
@ -72,9 +72,9 @@ obj-$(CONFIG_ECDSA) += ecdsa/
|
|||
obj-$(CONFIG_$(SPL_)RSA) += rsa/
|
||||
obj-$(CONFIG_HASH) += hash-checksum.o
|
||||
obj-$(CONFIG_BLAKE2) += blake2/blake2b.o
|
||||
obj-$(CONFIG_SHA1) += sha1.o
|
||||
obj-$(CONFIG_SHA256) += sha256.o
|
||||
obj-$(CONFIG_SHA512) += sha512.o
|
||||
obj-$(CONFIG_$(SPL_)SHA1) += sha1.o
|
||||
obj-$(CONFIG_$(SPL_)SHA256) += sha256.o
|
||||
obj-$(CONFIG_$(SPL_)SHA512) += sha512.o
|
||||
obj-$(CONFIG_CRYPT_PW) += crypt/
|
||||
obj-$(CONFIG_$(SPL_)ASN1_DECODER) += asn1_decoder.o
|
||||
|
||||
|
|
Loading…
Reference in a new issue