summaryrefslogtreecommitdiffstats
path: root/meta-ti-bsp/conf
diff options
context:
space:
mode:
authorAndrew Davis <afd@ti.com>2025-12-02 16:32:09 -0600
committerRyan Eatmon <reatmon@ti.com>2025-12-19 09:57:39 -0600
commit32e30bef7aaceca430ebb7ed0108327812b5f1f0 (patch)
treee0306dc2a7c3aecdab9ee5c75d0d220663ccbd3b /meta-ti-bsp/conf
parent65ee7c49c85a137805c2a45e822c2a374961c8e0 (diff)
downloadmeta-ti-32e30bef7aaceca430ebb7ed0108327812b5f1f0.tar.gz
k3r5: Use UBOOT_BINARY for R5 U-Boot Image
As R5 only builds one working image (tiboot3.bin), define this as the "UBOOT_BINARY", even though it was technically build using the SPL build pass in U-Boot. This allows some simplification and removes deploying of a dummy file (u-boot-spl.bin) which is not a usable boot file. It was only deployed as UBOOT_BINARY is not optional and so something needed to be set here. BeagleBone-AI64 already did something similar to this so the overrides in that MACHINE conf can now be removed. Signed-off-by: Andrew Davis <afd@ti.com> Reviewed-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'meta-ti-bsp/conf')
-rw-r--r--meta-ti-bsp/conf/machine/include/k3r5.inc8
1 files changed, 2 insertions, 6 deletions
diff --git a/meta-ti-bsp/conf/machine/include/k3r5.inc b/meta-ti-bsp/conf/machine/include/k3r5.inc
index fcd54254..0408c09c 100644
--- a/meta-ti-bsp/conf/machine/include/k3r5.inc
+++ b/meta-ti-bsp/conf/machine/include/k3r5.inc
@@ -15,13 +15,9 @@ require conf/machine/include/arm/armv7a/tune-cortexa8.inc
15require conf/machine/include/ti-bsp.inc 15require conf/machine/include/ti-bsp.inc
16PREFERRED_PROVIDER_virtual/kernel = "linux-dummy" 16PREFERRED_PROVIDER_virtual/kernel = "linux-dummy"
17 17
18SPL_SUFFIX = "bin"
19SPL_BINARY = "tiboot3-${SYSFW_SOC}-${SYSFW_SUFFIX}-${SYSFW_CONFIG}.${SPL_SUFFIX}"
20SPL_SYMLINK = "tiboot3.${SPL_SUFFIX}"
21UBOOT_SUFFIX = "bin" 18UBOOT_SUFFIX = "bin"
22UBOOT_BINARY = "u-boot-r5spl.${UBOOT_SUFFIX}" 19UBOOT_BINARY = "tiboot3-${SYSFW_SOC}-${SYSFW_SUFFIX}-${SYSFW_CONFIG}.${UBOOT_SUFFIX}"
23UBOOT_IMAGE = "u-boot-r5spl-${MAINMACHINE}-${PV}-${PR}.${UBOOT_SUFFIX}" 20UBOOT_SYMLINK = "tiboot3.${UBOOT_SUFFIX}"
24UBOOT_SYMLINK = "u-boot-r5spl-${MAINMACHINE}.${UBOOT_SUFFIX}"
25 21
26PACKAGECONFIG:pn-u-boot-ti-staging = "" 22PACKAGECONFIG:pn-u-boot-ti-staging = ""
27PACKAGECONFIG:pn-u-boot-ti-mainline = "" 23PACKAGECONFIG:pn-u-boot-ti-mainline = ""