From cc09267be9ec6695569fe60506409d3e842fa02d Mon Sep 17 00:00:00 2001 From: Jose Quaresma Date: Tue, 12 Dec 2023 19:25:58 +0000 Subject: [PATCH] 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 Signed-off-by: Ryan Eatmon --- meta-ti-bsp/conf/multiconfig/k3r5.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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}" MACHINE:append = "-k3r5" TCLIBC = "baremetal" -TMPDIR:append = "-k3r5" +TI_TMPDIR_APPEND ?= "-k3r5" +TMPDIR:append = "${TI_TMPDIR_APPEND}" SDKPKGSUFFIX = "k3r5-nativesdk"