diff options
author | Ryan Eatmon <reatmon@ti.com> | 2023-11-02 11:48:28 +0100 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2023-11-02 09:45:15 -0500 |
commit | 30f1544a1d20bf4e6a5f4bbf43e7dda344e8734b (patch) | |
tree | eb3afd5055d018f9d90548c7c5d1e8a30a4c2342 | |
parent | 9e5d1882c0f31201aecbff579d065f1c777fc35d (diff) | |
download | meta-ti-30f1544a1d20bf4e6a5f4bbf43e7dda344e8734b.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>
Signed-off-by: Massimiliano Minella <massimiliano.minella@se.com>
Acked-by: Chirag Shilwant <c-shilwant@ti.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | meta-ti-bsp/conf/machine/include/k3r5.inc | 6 |
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 c5c03cbf..184d3a09 100644 --- a/meta-ti-bsp/conf/machine/include/k3r5.inc +++ b/meta-ti-bsp/conf/machine/include/k3r5.inc | |||
@@ -11,9 +11,9 @@ require conf/machine/include/arm/armv7a/tune-cortexa8.inc | |||
11 | # https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/doc/board/ti/j721e_evm.rst | 11 | # https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/doc/board/ti/j721e_evm.rst |
12 | # https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/doc/board/ti/am62x_sk.rst | 12 | # https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/doc/board/ti/am62x_sk.rst |
13 | # https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/doc/board/ti/k3.rst | 13 | # https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/doc/board/ti/k3.rst |
14 | PREFERRED_PROVIDER_virtual/kernel = "linux-dummy" | 14 | PREFERRED_PROVIDER_virtual/kernel ?= "linux-dummy" |
15 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot-ti-staging" | 15 | PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-ti-staging" |
16 | PREFERRED_PROVIDER_u-boot = "u-boot-ti-staging" | 16 | PREFERRED_PROVIDER_u-boot ?= "u-boot-ti-staging" |
17 | 17 | ||
18 | SPL_SUFFIX = "bin" | 18 | SPL_SUFFIX = "bin" |
19 | SPL_BINARY = "tiboot3-${SYSFW_SOC}-${SYSFW_SUFFIX}-${SYSFW_CONFIG}.${SPL_SUFFIX}" | 19 | SPL_BINARY = "tiboot3-${SYSFW_SOC}-${SYSFW_SUFFIX}-${SYSFW_CONFIG}.${SPL_SUFFIX}" |