Re: [PATCH] xPL FIT: Rework SPL_FIT dependencies

2026-03-30 Thread Tom Rini
On Mon, 16 Mar 2026 19:24:21 -0600, Tom Rini wrote:

> As exposed by "make randconfig", we have xPL_FIT select'ing
> xPL_OF_CONTROL, and that in turn requires xPL_LIBGENERIC_SUPPORT. The
> most reasonable solution here is to have xPL_FIT select
> xPL_LIBGENERIC_SUPPORT.
> 
> 

Applied to u-boot/next, thanks!

[1/1] xPL FIT: Rework SPL_FIT dependencies
  commit: aa8203f83ab500c1150188d9682e9fe6e29fd6ab
-- 
Tom




[PATCH] xPL FIT: Rework SPL_FIT dependencies

2026-03-16 Thread Tom Rini
As exposed by "make randconfig", we have xPL_FIT select'ing
xPL_OF_CONTROL, and that in turn requires xPL_LIBGENERIC_SUPPORT. The
most reasonable solution here is to have xPL_FIT select
xPL_LIBGENERIC_SUPPORT.

Signed-off-by: Tom Rini 
---
 boot/Kconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/boot/Kconfig b/boot/Kconfig
index d81e56e8528c..7849928fc37d 100644
--- a/boot/Kconfig
+++ b/boot/Kconfig
@@ -183,6 +183,7 @@ config SPL_FIT
bool "Support Flattened Image Tree within SPL"
depends on SPL
select SPL_HASH
+   select SPL_LIBGENERIC_SUPPORT
select SPL_OF_LIBFDT
 
 config SPL_FIT_PRINT
@@ -315,6 +316,7 @@ config TPL_FIT
bool "Support Flattened Image Tree within TPL"
depends on TPL
select TPL_HASH
+   select TPL_LIBGENERIC_SUPPORT
select TPL_OF_LIBFDT
 
 config TPL_LOAD_FIT
-- 
2.43.0