From: Alexander Kanavin Date: Mon, 16 Jun 2025 09:49:53 +0000 (+0200) Subject: bitbake.conf: set S to be in UNPACKDIR rather than WORKDIR X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=50439f56b2d94769de928c70eebdfd4b47794fb4;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Alexander Kanavin Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index fff4a23dc1e..a3300fc1727 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"