summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJose Quaresma <quaresma.jose@gmail.com>2023-12-12 19:25:58 +0000
committerRyan Eatmon <reatmon@ti.com>2023-12-13 12:25:43 -0600
commitcc09267be9ec6695569fe60506409d3e842fa02d (patch)
tree9294968e7c2b217939d4406882a5a0da823be6bd
parent6ad91a192fa1ab33775a22894a413aefd0b67106 (diff)
downloadmeta-ti-cc09267be9ec6695569fe60506409d3e842fa02d.tar.gz
k3r5: make the separate TMPDIR optional
With the current implemetation is not possible to remove the '-k3r5' customization using overrides like below and the '-k3r5' always stay there. | TMPDIR:remove:k3r5 = "-k3r5" | or | TMPDIR:k3r5 = "${TOPDIR}/tmp" This patch allows to build the core-image-minimal in oe-core master/nanbield without any issue on a common TMPDIR folder just using the following: | TI_COMMON_DEPLOY = "${DEPLOY_DIR}" | TI_TMPDIR_APPEND = "" Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--meta-ti-bsp/conf/multiconfig/k3r5.conf3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-ti-bsp/conf/multiconfig/k3r5.conf b/meta-ti-bsp/conf/multiconfig/k3r5.conf
index e36c87ed..936bce2f 100644
--- a/meta-ti-bsp/conf/multiconfig/k3r5.conf
+++ b/meta-ti-bsp/conf/multiconfig/k3r5.conf
@@ -4,6 +4,7 @@ DEPLOY_DIR_IMAGE:k3r5 = "${TI_COMMON_DEPLOY}/images/${MAINMACHINE}"
4 4
5MACHINE:append = "-k3r5" 5MACHINE:append = "-k3r5"
6TCLIBC = "baremetal" 6TCLIBC = "baremetal"
7TMPDIR:append = "-k3r5" 7TI_TMPDIR_APPEND ?= "-k3r5"
8TMPDIR:append = "${TI_TMPDIR_APPEND}"
8 9
9SDKPKGSUFFIX = "k3r5-nativesdk" 10SDKPKGSUFFIX = "k3r5-nativesdk"