| Message ID | 20260121204726.811442-1-reatmon@ti.com |
|---|---|
| State | New |
| Headers | show |
| Series | [meta-ti,master] u-boot: Move ti-extras.inc into u-boot-ti.inc | expand |
meta-ti / na / 20260121204726.811442-1-reatmon PRC Results: PASS ========================================================= check-yocto-patches: PASS ========================================================= Patches ---------------------------------------- All patches passed ========================================================= apply-yocto-patch: PASS ========================================================= master ===================== Summary: - Patch Series: [meta-ti][master][PATCH] u-boot: Move ti-extras.inc into u-boot-ti.inc - Submitter: From: Ryan Eatmon <reatmon@ti.com> - Date: Date: Wed, 21 Jan 2026 14:47:26 -0600 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: 37f99fbf9d7bf936e2db6cd6d1a9b891f80f5543 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-ltsprep.202601210100 - Commit SHA: 7ccb6f04d3b589df321fb9957884d80ad35afb21 Patches ---------------------------------------- All patches applied ========================================================= check-yocto-repo: PASS ========================================================= master ===================== PASS ========================================================= yocto-check-layers: PASS ========================================================= master - PASS ===================== All checks passed
diff --git a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti-staging_2024.04.bb b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti-staging_2024.04.bb index 83179aee..d3a78d8b 100644 --- a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti-staging_2024.04.bb +++ b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti-staging_2024.04.bb @@ -1,7 +1,5 @@ require u-boot-ti.inc -include ${@ 'recipes-bsp/u-boot/ti-extras.inc' if d.getVar('TI_EXTRAS') else ''} - PR = "r0" BRANCH = "ti-u-boot-2024.04" diff --git a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti-staging_2025.01.bb b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti-staging_2025.01.bb index b85c5cfb..4b6e0d03 100644 --- a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti-staging_2025.01.bb +++ b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti-staging_2025.01.bb @@ -1,7 +1,5 @@ require u-boot-ti.inc -include ${@ 'recipes-bsp/u-boot/ti-extras.inc' if d.getVar('TI_EXTRAS') else ''} - PR = "r0" BRANCH = "ti-u-boot-2025.01" diff --git a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc index 97a895b0..773fa1e2 100644 --- a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc +++ b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc @@ -8,6 +8,8 @@ do_compile:prepend () { require ${COREBASE}/meta/recipes-bsp/u-boot/u-boot-common.inc require ${COREBASE}/meta/recipes-bsp/u-boot/u-boot.inc +include ${@ 'recipes-bsp/u-boot/ti-extras.inc' if d.getVar('TI_EXTRAS') else ''} + FILESEXTRAPATHS:prepend := "${THISDIR}/u-boot:" FILES:${PN}-falcon = "boot/tifalcon.bin"
Since the extras stuff should "theoretically" apply to all u-boot versions, move the include out of each recipe and into the central include file. Signed-off-by: Ryan Eatmon <reatmon@ti.com> --- meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti-staging_2024.04.bb | 2 -- meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti-staging_2025.01.bb | 2 -- meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc | 2 ++ 3 files changed, 2 insertions(+), 4 deletions(-)