summaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorQuentin Schulz <[email protected]>2025-10-29 12:08:58 +0100
committerTom Rini <[email protected]>2025-11-06 17:33:19 -0600
commit3e68c01baf80c66d0c94be753137f01fba29632d (patch)
treee0132e3806ee0825da6200bac24e155b99402d6c /boot
parent64ba0aa9f48cd3c2bba92c1f15a9da4c21000d2e (diff)
boot: specify SPL_FIT_FULL_CHECK applies to SPL
SPL_FIT_FULL_CHECK currently shares its description and help text with FIT_FULL_CHECK which is quite confusing, so let's specify this applies to SPL. Fixes: 6f3c2d8aa5e6 ("image: Add an option to do a full check of the FIT") Signed-off-by: Quentin Schulz <[email protected]> Reviewed-by: Mattijs Korpershoek <[email protected]>
Diffstat (limited to 'boot')
-rw-r--r--boot/Kconfig10
1 files changed, 5 insertions, 5 deletions
diff --git a/boot/Kconfig b/boot/Kconfig
index d4655f70448..ea6a3ef16e8 100644
--- a/boot/Kconfig
+++ b/boot/Kconfig
@@ -211,13 +211,13 @@ config SPL_FIT_PRINT
Support printing the content of the fitImage in a verbose manner in SPL.
config SPL_FIT_FULL_CHECK
- bool "Do a full check of the FIT before using it"
+ bool "Do a full check of the FIT within SPL before using it"
depends on SPL_FIT
help
- Enable this do a full check of the FIT to make sure it is valid. This
- helps to protect against carefully crafted FITs which take advantage
- of bugs or omissions in the code. This includes a bad structure,
- multiple root nodes and the like.
+ Enable this do a full check of the FIT within SPL to make sure it is
+ valid. This helps to protect against carefully crafted FITs which take
+ advantage of bugs or omissions in the code. This includes a bad
+ structure, multiple root nodes and the like.
config SPL_FIT_SIGNATURE
bool "Enable signature verification of FIT firmware within SPL"