summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe
diff options
context:
space:
mode:
authorAndrey Zhizhikin <andrey.z@gmail.com>2024-06-14 08:46:47 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-06-24 12:43:40 +0100
commit08b9170941b78f191ad03a476b100ce7f133aaf2 (patch)
tree1ed56a170dca39878f8bf948fad053e85046e8f1 /meta/classes-recipe
parentd87082efa5daecac35bff3391d06d5d37de48cc4 (diff)
downloadpoky-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.bbclass3
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}"
40SYSROOT_DIRS += "/boot/devicetree" 40SYSROOT_DIRS += "/boot/devicetree"
41FILES:${PN} = "/boot/devicetree/*.dtb /boot/devicetree/*.dtbo" 41FILES:${PN} = "/boot/devicetree/*.dtb /boot/devicetree/*.dtbo"
42 42
43S = "${WORKDIR}" 43S = "${WORKDIR}/sources"
44UNPACKDIR = "${S}"
44B = "${WORKDIR}/build" 45B = "${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