From 82e6172c1df378dff4e503aa878501c08937b5bb Mon Sep 17 00:00:00 2001 From: Andres Beltran Date: Tue, 5 Oct 2021 00:34:15 +0000 Subject: 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. Signed-off-by: Andres Beltran Signed-off-by: Alexandre Belloni --- meta/conf/bitbake.conf | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/conf') diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 030d29b097..441cc2b470 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -415,6 +415,7 @@ DEPLOY_DIR_IMAGE ?= "${DEPLOY_DIR}/images/${MACHINE}" DEPLOY_DIR_TOOLS = "${DEPLOY_DIR}/tools" PKGDATA_DIR = "${TMPDIR}/pkgdata/${MACHINE}" +PKGDATA_DIR_SDK = "${TMPDIR}/pkgdata/${SDK_SYS}" ################################################################## # SDK variables. -- cgit 1.2.3-korg