summaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-10-03 14:39:20 -0600
committerTom Rini <[email protected]>2025-10-13 14:54:32 -0600
commitec90518ee679f1353915cd912b9738ba81d1258f (patch)
tree64453be742862c416d43d1079025441d0517214a /boot
parent66873b9ef0b447d9b0f9da81eb9867e1f19b99cf (diff)
spl: FIT: Make SPL_LOAD_FIT_FULL depend on SPL_LOAD_FIT
Today, only a few platforms enable SPL_LOAD_FIT_FULL, and all enable SPL_LOAD_FIT. As can be seen in usage, the FULL symbol is a superset of the first symbol, not an alternative. Update Kconfig entries based on this and simplify the only code which checks for either being set. Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'boot')
-rw-r--r--boot/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/Kconfig b/boot/Kconfig
index eff05948b3a..022ec05de0a 100644
--- a/boot/Kconfig
+++ b/boot/Kconfig
@@ -204,7 +204,7 @@ config SPL_FIT_FULL_CHECK
config SPL_FIT_SIGNATURE
bool "Enable signature verification of FIT firmware within SPL"
depends on SPL_DM
- depends on SPL_LOAD_FIT || SPL_LOAD_FIT_FULL
+ depends on SPL_LOAD_FIT
select FIT_SIGNATURE
select SPL_FIT
select SPL_CRYPTO
@@ -282,7 +282,7 @@ config SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ
config SPL_LOAD_FIT_FULL
bool "Enable SPL loading U-Boot as a FIT (full fitImage features)"
- select SPL_FIT
+ depends on SPL_LOAD_FIT
help
Normally with the SPL framework a legacy image is generated as part
of the build. This contains U-Boot along with information as to