aboutsummaryrefslogtreecommitdiff
path: root/lib/rsa/Makefile
diff options
context:
space:
mode:
authorAKASHI Takahiro2020-02-21 15:12:55 +0900
committerTom Rini2020-03-12 08:20:38 -0400
commitb983cc2da0bafd73a4dfc069eb3c3a98677e2d92 (patch)
tree6ea5e39eb92db6a1c1311876a8df52f267a3aeea /lib/rsa/Makefile
parentd08b16edf80aa268985b96b2d9e633909734e7c1 (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 <takahiro.akashi@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/rsa/Makefile')
-rw-r--r--lib/rsa/Makefile2
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, wd@denx.de.
-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