mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 07:31:15 +00:00
lib: rsa: consider CONFIG_SPL_RSA
CONFIG_SPL_RSA is meant to control if lib/rsa/* is used for SPL. Adjust lib/Makefile to consider this setting. This was correctly setup with commit51c14cd128
("verified-boot: Minimal support for booting U-Boot proper from SPL") and got lost with commit089df18bfe
("lib: move hash CONFIG options to Kconfig"). Fixes:089df18bfe
("lib: move hash CONFIG options to Kconfig") Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
dae188e683
commit
1b27753a96
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ obj-$(CONFIG_TPM_V1) += tpm-v1.o
|
|||
obj-$(CONFIG_TPM_V2) += tpm-v2.o
|
||||
endif
|
||||
|
||||
obj-$(CONFIG_RSA) += rsa/
|
||||
obj-$(CONFIG_$(SPL_)RSA) += rsa/
|
||||
obj-$(CONFIG_SHA1) += sha1.o
|
||||
obj-$(CONFIG_SHA256) += sha256.o
|
||||
|
||||
|
|
Loading…
Reference in a new issue