| Message ID | 20260422134533.3370974-1-reatmon@ti.com |
|---|---|
| State | Accepted |
| Delegated to: | Ryan Eatmon |
| Headers | show |
| Series | [meta-ti,master] machine: Fix UBOOT_CONFIG setting for tie-test-builds | expand |
meta-ti / na / 20260422134533.3370974-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] machine: Fix UBOOT_CONFIG setting for tie-test-builds - Submitter: From: Ryan Eatmon <reatmon@ti.com> - Date: Date: Wed, 22 Apr 2026 08:45:33 -0500 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: 467a4001abdba74b9a5361025433d28f72c066f5 Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: master-wip - Commit Author: Ryan Eatmon <reatmon@ti.com> - Commit Subject: conf: Add falcon support natively - Commit SHA: f9937ef9d61a43800eab7b176fa89888721db064 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/conf/machine/am65xx-evm-k3r5.conf b/meta-ti-bsp/conf/machine/am65xx-evm-k3r5.conf index 4ceb81af..c3b028ea 100644 --- a/meta-ti-bsp/conf/machine/am65xx-evm-k3r5.conf +++ b/meta-ti-bsp/conf/machine/am65xx-evm-k3r5.conf @@ -8,6 +8,6 @@ UBOOT_MACHINE = "am65x_evm_r5_defconfig" UBOOT_MACHINE:tie-test-builds = "" UBOOT_CONFIG = "" -UBOOT_CONFIG:prepend:tie-test-builds = "usbdfu main" +UBOOT_CONFIG:tie-test-builds = "usbdfu main" UBOOT_CONFIG[main] = "am65x_evm_r5_defconfig" UBOOT_CONFIG[usbdfu] = "am65x_evm_r5_usbdfu_defconfig" diff --git a/meta-ti-bsp/conf/machine/j722s-evm-k3r5.conf b/meta-ti-bsp/conf/machine/j722s-evm-k3r5.conf index 5df4edfe..3cb95142 100644 --- a/meta-ti-bsp/conf/machine/j722s-evm-k3r5.conf +++ b/meta-ti-bsp/conf/machine/j722s-evm-k3r5.conf @@ -7,8 +7,8 @@ require conf/machine/include/k3r5.inc UBOOT_MACHINE = "j722s_evm_r5_defconfig" UBOOT_MACHINE:tie-test-builds = "" -UBOOT_CONFIG = "main" -UBOOT_CONFIG:prepend:tie-test-builds = "usbdfu " +UBOOT_CONFIG = "" +UBOOT_CONFIG:tie-test-builds = "usbdfu main" UBOOT_CONFIG[main] = "j722s_evm_r5_defconfig" UBOOT_CONFIG[usbdfu] = "j722s_evm_r5_defconfig"
It was pointed out that j722s-evm-k3r5 was incorrectly setup and would not build correctly out of the box. This is due to the fact that we set both UBOOT_MACHINE and UBOOT_CONFIG by default. This was a mistake. While looking into this newish feature I also found that another platform was using a prepend, when it really should just be setting the value for tie-test-builds. Signed-off-by: Ryan Eatmon <reatmon@ti.com> --- meta-ti-bsp/conf/machine/am65xx-evm-k3r5.conf | 2 +- meta-ti-bsp/conf/machine/j722s-evm-k3r5.conf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)