summaryrefslogtreecommitdiffstats
path: root/meta-ti-bsp/conf/machine/include/k3r5.inc
diff options
context:
space:
mode:
authorRyan Eatmon <reatmon@ti.com>2022-12-22 16:06:53 -0600
committerRyan Eatmon <reatmon@ti.com>2023-01-04 13:17:27 -0600
commitbd1318d2ed0ef70158cb12f03f6172b71ef078b5 (patch)
treea2a95219056911c6a36707649e1c4339745007d8 /meta-ti-bsp/conf/machine/include/k3r5.inc
parentf20ceaa7fb2699824b72e52893788d9722633b09 (diff)
downloadmeta-ti-bd1318d2ed0ef70158cb12f03f6172b71ef078b5.tar.gz
k3r5: Use the ?= default assignment to allow for overrides
Move to setting the values for PREFERRED_PROVIDER using the ?= default assignment so that we can override the setting if we would like to. Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'meta-ti-bsp/conf/machine/include/k3r5.inc')
-rw-r--r--meta-ti-bsp/conf/machine/include/k3r5.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-ti-bsp/conf/machine/include/k3r5.inc b/meta-ti-bsp/conf/machine/include/k3r5.inc
index 31646f5a..48202154 100644
--- a/meta-ti-bsp/conf/machine/include/k3r5.inc
+++ b/meta-ti-bsp/conf/machine/include/k3r5.inc
@@ -10,9 +10,9 @@ require conf/machine/include/arm/armv7a/tune-cortexa8.inc
10# R5 runs early bootloader and loads SYSFW 10# R5 runs early bootloader and loads SYSFW
11# https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/board/ti/am65x/README 11# https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/board/ti/am65x/README
12# https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/board/ti/j721e/README 12# https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/board/ti/j721e/README
13PREFERRED_PROVIDER_virtual/kernel = "linux-dummy" 13PREFERRED_PROVIDER_virtual/kernel ?= "linux-dummy"
14PREFERRED_PROVIDER_virtual/bootloader = "u-boot-ti-staging" 14PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-ti-staging"
15PREFERRED_PROVIDER_u-boot = "u-boot-ti-staging" 15PREFERRED_PROVIDER_u-boot ?= "u-boot-ti-staging"
16 16
17SPL_BINARY = "" 17SPL_BINARY = ""
18UBOOT_SUFFIX = "bin" 18UBOOT_SUFFIX = "bin"