summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorAndres Beltran <abeltran@linux.microsoft.com>2021-10-05 00:34:15 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-29 11:17:26 +0100
commit6c3a8ae1f9e8115aeab95f8a10d45db85ac7afe0 (patch)
treefac4efdd4862e69d83200273ffb8f3859b3f7e74 /meta/conf/bitbake.conf
parentbe011b75c0f67d1dad1dd288de3f697cab79b3a0 (diff)
downloadpoky-6c3a8ae1f9e8115aeab95f8a10d45db85ac7afe0.tar.gz
buildhistory: Fix package output files for SDKs
Currently, installed packages are listed for images in image-info.txt, but not for SDKs in sdk-info.txt. Add TOOLCHAIN_HOST_TASK and TOOLCHAIN_TARGET_TASK to the output variables in sdk-info.txt. Moreover, package output files for the SDK host are empty because PKGDATA_DIR defaults to the target directory. Fix this bug and create a new variable called PKGDATA_DIR_SDK which stores the correct path for the SDK host package data. (From OE-Core rev: af7b5c664649d2c0d1b23eb1d553080b9d2a7864) Signed-off-by: Andres Beltran <abeltran@linux.microsoft.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> (cherry picked from commit 82e6172c1df378dff4e503aa878501c08937b5bb) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index f3ff5b776b..9274322e3a 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -415,6 +415,7 @@ DEPLOY_DIR_IMAGE ?= "${DEPLOY_DIR}/images/${MACHINE}"
415DEPLOY_DIR_TOOLS = "${DEPLOY_DIR}/tools" 415DEPLOY_DIR_TOOLS = "${DEPLOY_DIR}/tools"
416 416
417PKGDATA_DIR = "${TMPDIR}/pkgdata/${MACHINE}" 417PKGDATA_DIR = "${TMPDIR}/pkgdata/${MACHINE}"
418PKGDATA_DIR_SDK = "${TMPDIR}/pkgdata/${SDK_SYS}"
418 419
419################################################################## 420##################################################################
420# SDK variables. 421# SDK variables.