diff options
author | Andrey Zhizhikin <andrey.z@gmail.com> | 2024-06-14 08:46:47 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-06-24 12:43:40 +0100 |
commit | 08b9170941b78f191ad03a476b100ce7f133aaf2 (patch) | |
tree | 1ed56a170dca39878f8bf948fad053e85046e8f1 /meta/classes-recipe | |
parent | d87082efa5daecac35bff3391d06d5d37de48cc4 (diff) | |
download | poky-08b9170941b78f191ad03a476b100ce7f133aaf2.tar.gz |
devicetree.bbclass: switch away from S = WORKDIR
Since the change done in commit 32cba1cc916a ("insane: Error for S ==
WORKDIR"), usage of WORKDIR is not allowed anymore.
Switch S from WORKDIR to UNPACKDIR as implemented in commit d9328e3b0b06
("recipes: Switch away from S = WORKDIR").
(From OE-Core rev: 7a06069a041a908c1d190f8fb7dd923b86217703)
Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe')
-rw-r--r-- | meta/classes-recipe/devicetree.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes-recipe/devicetree.bbclass b/meta/classes-recipe/devicetree.bbclass index bd50d7fa1d..1806cb62cb 100644 --- a/meta/classes-recipe/devicetree.bbclass +++ b/meta/classes-recipe/devicetree.bbclass | |||
@@ -40,7 +40,8 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" | |||
40 | SYSROOT_DIRS += "/boot/devicetree" | 40 | SYSROOT_DIRS += "/boot/devicetree" |
41 | FILES:${PN} = "/boot/devicetree/*.dtb /boot/devicetree/*.dtbo" | 41 | FILES:${PN} = "/boot/devicetree/*.dtb /boot/devicetree/*.dtbo" |
42 | 42 | ||
43 | S = "${WORKDIR}" | 43 | S = "${WORKDIR}/sources" |
44 | UNPACKDIR = "${S}" | ||
44 | B = "${WORKDIR}/build" | 45 | B = "${WORKDIR}/build" |
45 | 46 | ||
46 | # Default kernel includes, these represent what are normally used for in-kernel | 47 | # Default kernel includes, these represent what are normally used for in-kernel |