From fc0f1b61c686eb236fc78642a62506ff850c382b Mon Sep 17 00:00:00 2001 From: Alexander Kanavin Date: Mon, 16 Jun 2025 11:49:53 +0200 Subject: [PATCH] bitbake.conf: set S to be in UNPACKDIR rather than WORKDIR This transitions most of the recipes to have their sources in UNPACKDIR, which over time will allow more simple and logical source code handling in various pieces of the Yocto project. (From OE-Core rev: 50439f56b2d94769de928c70eebdfd4b47794fb4) Signed-off-by: Alexander Kanavin Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- meta/conf/bitbake.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index fff4a23dc1..a3300fc172 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -411,7 +411,7 @@ UNPACKDIR ??= "${WORKDIR}/sources" BB_GIT_DEFAULT_DESTSUFFIX = "${BP}" T = "${WORKDIR}/temp" D = "${WORKDIR}/image" -S = "${WORKDIR}/${BP}" +S = "${UNPACKDIR}/${BP}" B = "${S}" STAGING_DIR = "${TMPDIR}/sysroots"