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 <alex@linutronix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Alexander Kanavin 2025-06-16 11:49:53 +02:00 committed by Richard Purdie
parent 92dfe6e2f5
commit fc0f1b61c6

View File

@ -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"