diff options
author | Simon Glass <sjg@chromium.org> | 2021-07-14 17:05:31 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-16 12:58:55 -0400 |
commit | ad74aed11e1dfe39b7f32dd855859abaf51d33f0 (patch) | |
tree | b06b66babbe8c7860cebad5e558e65d96707003c /common | |
parent | f5bc9c25f3159db2e420cdcff974980a5258a44f (diff) | |
download | u-boot-ad74aed11e1dfe39b7f32dd855859abaf51d33f0.tar.gz u-boot-ad74aed11e1dfe39b7f32dd855859abaf51d33f0.tar.bz2 u-boot-ad74aed11e1dfe39b7f32dd855859abaf51d33f0.zip |
image: Rename CONFIG_FIT_ENABLE_RSASSA_PSS_SUPPORT
Drop the ENABLE and SUPPORT parts of this, which are redundant.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/Kconfig.boot | 2 | ||||
-rw-r--r-- | common/image-sig.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/common/Kconfig.boot b/common/Kconfig.boot index d28ce96a28..ae3f2b6f62 100644 --- a/common/Kconfig.boot +++ b/common/Kconfig.boot @@ -103,7 +103,7 @@ config FIT_SIGNATURE_MAX_SIZE device memory. Assure this size does not extend past expected storage space. -config FIT_ENABLE_RSASSA_PSS_SUPPORT +config FIT_RSASSA_PSS bool "Support rsassa-pss signature scheme of FIT image contents" depends on FIT_SIGNATURE default n diff --git a/common/image-sig.c b/common/image-sig.c index 0f8e592aba..8b5cecbfa4 100644 --- a/common/image-sig.c +++ b/common/image-sig.c @@ -99,12 +99,12 @@ struct padding_algo padding_algos[] = { .name = "pkcs-1.5", .verify = padding_pkcs_15_verify, }, -#ifdef CONFIG_FIT_ENABLE_RSASSA_PSS_SUPPORT +#ifdef CONFIG_FIT_RSASSA_PSS { .name = "pss", .verify = padding_pss_verify, } -#endif /* CONFIG_FIT_ENABLE_RSASSA_PSS_SUPPORT */ +#endif /* CONFIG_FIT_RSASSA_PSS */ }; struct checksum_algo *image_get_checksum_algo(const char *full_name) |