aboutsummaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-09-14 10:55:52 -0600
committerTom Rini <trini@konsulko.com>2023-09-19 11:36:26 -0400
commit4d8ea26f99062c92e93d25a1cb7613600b30b3c7 (patch)
tree6eeda080f7cf1b3af3b6d058d23b62ee9c8f523b /boot
parent815f8d3f86dcabea7b82d302aefa86c6cc09a210 (diff)
downloadu-boot-4d8ea26f99062c92e93d25a1cb7613600b30b3c7.zip
u-boot-4d8ea26f99062c92e93d25a1cb7613600b30b3c7.tar.gz
u-boot-4d8ea26f99062c92e93d25a1cb7613600b30b3c7.tar.bz2
Kconfig: Move SPL_FIT under FIT
This option already depends on FIT, so put it under the same umbrella, so that it appears in the FIT menu. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'boot')
-rw-r--r--boot/Kconfig9
1 files changed, 4 insertions, 5 deletions
diff --git a/boot/Kconfig b/boot/Kconfig
index f564cb8..9b09d63 100644
--- a/boot/Kconfig
+++ b/boot/Kconfig
@@ -140,11 +140,9 @@ config FIT_PRINT
help
Support printing the content of the fitImage in a verbose manner.
-endif # FIT
-
config SPL_FIT
bool "Support Flattened Image Tree within SPL"
- depends on SPL && FIT
+ depends on SPL
select SPL_HASH
select SPL_OF_LIBFDT
@@ -195,7 +193,7 @@ config SPL_FIT_RSASSA_PSS
config SPL_LOAD_FIT
bool "Enable SPL loading U-Boot as a FIT (basic fitImage features)"
- depends on SPL && FIT
+ depends on SPL
select SPL_FIT
help
Normally with the SPL framework a legacy image is generated as part
@@ -243,7 +241,6 @@ 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)"
- depends on FIT
select SPL_FIT
help
Normally with the SPL framework a legacy image is generated as part
@@ -341,6 +338,8 @@ config VPL_FIT_SIGNATURE_MAX_SIZE
endif # VPL
+endif # FIT
+
config PXE_UTILS
bool
select MENU