Message ID | 20251009182231.4242-1-reatmon@ti.com |
---|---|
State | Accepted |
Delegated to: | Ryan Eatmon |
Headers | show |
Series | [meta-ti,master] machine: Add FIT_CONF_DEFAULT_DTB for legacy platforms | expand |
meta-ti / na / 20251009182231.4242-1-reatmon PRC Results: PASS ========================================================= check-yocto-patches: PASS ========================================================= Patches ---------------------------------------- WARN - [meta-ti][master][PATCH] machine: Add FIT_CONF_DEFAULT_DTB for legacy platforms WARN: Commit message does not include file/recipe name: machine: Add FIT_CONF_DEFAULT_DTB for legacy platforms. (COMMIT-MESSAGE-2) patch WARN: Commit message should not include directory path to recipe: machine: Add FIT_CONF_DEFAULT_DTB for legacy platforms. machine: (COMMIT-MESSAGE-3) patch ========================================================= apply-yocto-patch: PASS ========================================================= master ===================== Summary: - Patch Series: [meta-ti][master][PATCH] machine: Add FIT_CONF_DEFAULT_DTB for legacy platforms - Submitter: From: Ryan Eatmon <reatmon@ti.com> - Date: Date: Thu, 9 Oct 2025 13:22:30 -0500 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: be55de3a94d2b6a5062da29689a36c2f7ec49345 Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: master-next - Commit Author: LCPD Automation Script <lcpdbld@list.ti.com> - Commit Subject: CI/CD Auto-Merger: cicd.master.202510090100 - Commit SHA: 45e9805876bc8abe70cd33ef535ad2af6c92ddb9 Patches ---------------------------------------- All patches applied ========================================================= check-yocto-repo: PASS ========================================================= master ===================== PASS
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"
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 <reatmon@ti.com> --- 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(+)