diff options
author | Oleksandr Suvorov <oleksandr.suvorov@foundries.io> | 2023-08-03 19:05:40 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-08-07 13:41:44 -0400 |
commit | af62d83cc0ee27ca5051718a0df44341f71abff1 (patch) | |
tree | a2dffd699096ebbb888b1180256963808e259a5d /common/spl/Kconfig | |
parent | 0d2761abbde00e1ff756426fdb77b4b30192311d (diff) | |
download | u-boot-af62d83cc0ee27ca5051718a0df44341f71abff1.zip u-boot-af62d83cc0ee27ca5051718a0df44341f71abff1.tar.gz u-boot-af62d83cc0ee27ca5051718a0df44341f71abff1.tar.bz2 |
spl: move SPL_CRC32 option to lib/Kconfig
All SPL hash algorithm options are collected in lib/Kconfig. Move
SPL_CRC32 there as well.
Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@foundries.io>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/spl/Kconfig')
-rw-r--r-- | common/spl/Kconfig | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index c66d70e..c5dd476 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -550,17 +550,6 @@ config SYS_MMCSD_RAW_MODE_EMMC_BOOT_PARTITION the eMMC EXT_CSC_PART_CONFIG selection should be overridden in SPL by user defined partition number. -config SPL_CRC32 - bool "Support CRC32" - default y if SPL_LEGACY_IMAGE_FORMAT || SPL_EFI_PARTITION - default y if SPL_ENV_SUPPORT || TPL_BLOBLIST - help - Enable this to support CRC32 in uImages or FIT images within SPL. - This is a 32-bit checksum value that can be used to verify images. - For FIT images, this is the least secure type of checksum, suitable - for detected accidental image corruption. For secure applications you - should consider SHA1 or SHA256. - config SPL_FIT_IMAGE_TINY bool "Remove functionality from SPL FIT loading to reduce size" depends on SPL_FIT |