1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-05-07 11:59:49 +00:00

machine: Fix UBOOT_CONFIG setting for tie-test-builds

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>
This commit is contained in:
Ryan Eatmon
2026-04-20 09:33:04 -05:00
parent f3081d9c34
commit 5e0dffe234
2 changed files with 3 additions and 3 deletions
@@ -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"
+2 -2
View File
@@ -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"