diff options
| author | AKASHI Takahiro <[email protected]> | 2020-02-21 15:12:55 +0900 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-03-12 08:20:38 -0400 |
| commit | b983cc2da0bafd73a4dfc069eb3c3a98677e2d92 (patch) | |
| tree | 6ea5e39eb92db6a1c1311876a8df52f267a3aeea /lib/rsa/Makefile | |
| parent | d08b16edf80aa268985b96b2d9e633909734e7c1 (diff) | |
lib: rsa: decouple rsa from FIT image verification
Introduce new configuration, CONFIG_RSA_VERIFY which will decouple building
RSA functions from FIT verification and allow for adding a RSA-based
signature verification for other file formats, in particular PE file
for UEFI secure boot.
Signed-off-by: AKASHI Takahiro <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'lib/rsa/Makefile')
| -rw-r--r-- | lib/rsa/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rsa/Makefile b/lib/rsa/Makefile index a51c6e1685f..c07305188e0 100644 --- a/lib/rsa/Makefile +++ b/lib/rsa/Makefile @@ -5,5 +5,5 @@ # (C) Copyright 2000-2007 # Wolfgang Denk, DENX Software Engineering, [email protected]. -obj-$(CONFIG_$(SPL_)FIT_SIGNATURE) += rsa-verify.o rsa-checksum.o +obj-$(CONFIG_$(SPL_)RSA_VERIFY) += rsa-verify.o rsa-checksum.o obj-$(CONFIG_RSA_SOFTWARE_EXP) += rsa-mod-exp.o |
