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:22:29 -0600
commit5dd8e7f62b607be66c25e1e5122061ca8a6bf6b3 (patch)
tree50ecb58c1074f4fec66e250977efc7893d10fb75
parent5b5b8b932561d76c5ed50a4210a726df86c649bf (diff)
downloadmeta-ti-5dd8e7f62b607be66c25e1e5122061ca8a6bf6b3.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"