[U-Boot] [PATCH 1/3] spl: Rename SPL_LEGACY_IMAGE_SUPPORT to SPL_IMAGE_FORMAT_LEGACY
Tom Rini
trini at konsulko.com
Fri Mar 22 16:37:47 UTC 2019
We have a symbol named CONFIG_IMAGE_FORMAT_LEGACY already for non-SPL,
so rename the SPL symbol so we can make more use of those checks.
Signed-off-by: Tom Rini <trini at konsulko.com>
---
common/spl/Kconfig | 6 +++---
common/spl/spl.c | 2 +-
configs/lion-rk3368_defconfig | 2 +-
configs/puma-rk3399_defconfig | 2 +-
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index 206c24076da8..aef7c5b01465 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -92,7 +92,7 @@ config SPL_RAW_IMAGE_SUPPORT
is y. If this is not set, SPL will move on to other available
boot media to find a suitable image.
-config SPL_LEGACY_IMAGE_SUPPORT
+config SPL_IMAGE_FORMAT_LEGACY
bool "Support SPL loading and booting of Legacy images"
default y if !TI_SECURE_DEVICE
help
@@ -102,7 +102,7 @@ config SPL_LEGACY_IMAGE_SUPPORT
config SPL_LEGACY_IMAGE_CRC_CHECK
bool "Check CRC of Legacy images"
- depends on SPL_LEGACY_IMAGE_SUPPORT
+ depends on SPL_IMAGE_FORMAT_LEGACY
select SPL_CRC32_SUPPORT
help
Enable this to check the CRC of Legacy images. While this increases
@@ -246,7 +246,7 @@ config SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE
config SPL_CRC32_SUPPORT
bool "Support CRC32"
- default y if SPL_LEGACY_IMAGE_SUPPORT
+ default y if SPL_IMAGE_FORMAT_LEGACY
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.
diff --git a/common/spl/spl.c b/common/spl/spl.c
index 88d4b8a9bf15..b6532a5234bd 100644
--- a/common/spl/spl.c
+++ b/common/spl/spl.c
@@ -236,7 +236,7 @@ int spl_parse_image_header(struct spl_image_info *spl_image,
return ret;
#endif
if (image_get_magic(header) == IH_MAGIC) {
-#ifdef CONFIG_SPL_LEGACY_IMAGE_SUPPORT
+#ifdef CONFIG_SPL_IMAGE_FORMAT_LEGACY
u32 header_size = sizeof(struct image_header);
#ifdef CONFIG_SPL_LEGACY_IMAGE_CRC_CHECK
diff --git a/configs/lion-rk3368_defconfig b/configs/lion-rk3368_defconfig
index d6dd0e5106ea..03409a38a4e9 100644
--- a/configs/lion-rk3368_defconfig
+++ b/configs/lion-rk3368_defconfig
@@ -33,7 +33,7 @@ CONFIG_DISPLAY_BOARDINFO_LATE=y
CONFIG_ARCH_EARLY_INIT_R=y
CONFIG_SPL_BOOTROM_SUPPORT=y
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
-# CONFIG_SPL_LEGACY_IMAGE_SUPPORT is not set
+# CONFIG_SPL_IMAGE_FORMAT_LEGACY is not set
CONFIG_TPL_SYS_MALLOC_SIMPLE=y
CONFIG_SPL_STACK_R=y
CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x200
diff --git a/configs/puma-rk3399_defconfig b/configs/puma-rk3399_defconfig
index 3fcff2580a19..0ab2a5d2b085 100644
--- a/configs/puma-rk3399_defconfig
+++ b/configs/puma-rk3399_defconfig
@@ -24,7 +24,7 @@ CONFIG_MISC_INIT_R=y
CONFIG_DISPLAY_BOARDINFO_LATE=y
CONFIG_SPL_BOARD_INIT=y
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
-# CONFIG_SPL_LEGACY_IMAGE_SUPPORT is not set
+# CONFIG_SPL_IMAGE_FORMAT_LEGACY is not set
CONFIG_SPL_STACK_R=y
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x4000
CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x200
--
2.7.4
More information about the U-Boot
mailing list