From e108e5424e1cffd58a0e8d540117d79dce85a8c7 Mon Sep 17 00:00:00 2001 From: Ryan Eatmon Date: Thu, 9 Oct 2025 13:18:46 -0500 Subject: [PATCH] machine: Add FIT_CONF_DEFAULT_DTB for legacy platforms As of u-boot 2025.10, the fit image requires a value for the default configuration. The change [1] introduced the FIT_CONF_DEFAULT_DTB code to the legacy fitimage class, but failed to set values for the legacy platforms. This led to us putting default = "" in the .its file, which is now an error. Signed-off-by: Ryan Eatmon --- meta-ti-bsp/conf/machine/am335x-hs-evm.conf | 1 + meta-ti-bsp/conf/machine/am437x-hs-evm.conf | 1 + meta-ti-bsp/conf/machine/am57xx-hs-evm.conf | 1 + 3 files changed, 3 insertions(+) diff --git a/meta-ti-bsp/conf/machine/am335x-hs-evm.conf b/meta-ti-bsp/conf/machine/am335x-hs-evm.conf index 562befe9..dade6585 100644 --- a/meta-ti-bsp/conf/machine/am335x-hs-evm.conf +++ b/meta-ti-bsp/conf/machine/am335x-hs-evm.conf @@ -20,3 +20,4 @@ FITIMAGE_HASH_ALGO = "" FITIMAGE_DTB_BY_NAME = "1" FITIMAGE_TEE_BY_NAME = "1" FITIMAGE_CONF_BY_NAME = "1" +FIT_CONF_DEFAULT_DTB = "am335x-evm.dtb" diff --git a/meta-ti-bsp/conf/machine/am437x-hs-evm.conf b/meta-ti-bsp/conf/machine/am437x-hs-evm.conf index 35b8d0a4..b6ee41be 100644 --- a/meta-ti-bsp/conf/machine/am437x-hs-evm.conf +++ b/meta-ti-bsp/conf/machine/am437x-hs-evm.conf @@ -22,3 +22,4 @@ FITIMAGE_PACK_TEE = "1" FITIMAGE_DTB_BY_NAME = "1" FITIMAGE_TEE_BY_NAME = "1" FITIMAGE_CONF_BY_NAME = "1" +FIT_CONF_DEFAULT_DTB = "am437x-gp-evm.dtb" diff --git a/meta-ti-bsp/conf/machine/am57xx-hs-evm.conf b/meta-ti-bsp/conf/machine/am57xx-hs-evm.conf index e06c9728..7b8a294a 100644 --- a/meta-ti-bsp/conf/machine/am57xx-hs-evm.conf +++ b/meta-ti-bsp/conf/machine/am57xx-hs-evm.conf @@ -23,3 +23,4 @@ FITIMAGE_PACK_TEE = "1" FITIMAGE_DTB_BY_NAME = "1" FITIMAGE_TEE_BY_NAME = "1" FITIMAGE_CONF_BY_NAME = "1" +FIT_CONF_DEFAULT_DTB = "am57xx-evm.dtb"