diff options
author | Mark Hatle <mark.hatle@xilinx.com> | 2021-12-10 09:02:21 -0800 |
---|---|---|
committer | Mark Hatle <mark.hatle@xilinx.com> | 2021-12-10 09:02:21 -0800 |
commit | bf6da5278138538e4a28fd2ecf843afe094cbbe2 (patch) | |
tree | dbeb5709d4d9032f3e54966c847f625023588a43 | |
parent | 3245243321430a158f5d44cc0eecee85cfa01aa3 (diff) | |
download | meta-xilinx-bf6da5278138538e4a28fd2ecf843afe094cbbe2.tar.gz |
esw.bbclass: Workaround for experimental esw build
For some reason build no longer works in a separate directory. It fails
with a message indicating the system was unable to load 'the cache'.
Until this is resolved, set B = S.
Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
-rw-r--r-- | meta-xilinx-standalone-experimental/classes/esw.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-xilinx-standalone-experimental/classes/esw.bbclass b/meta-xilinx-standalone-experimental/classes/esw.bbclass index 9169bbe9..5de88bc8 100644 --- a/meta-xilinx-standalone-experimental/classes/esw.bbclass +++ b/meta-xilinx-standalone-experimental/classes/esw.bbclass | |||
@@ -6,7 +6,9 @@ require conf/dtb-embeddedsw.inc | |||
6 | SRCREV_FORMAT = "src_decouple" | 6 | SRCREV_FORMAT = "src_decouple" |
7 | 7 | ||
8 | S = "${WORKDIR}/git" | 8 | S = "${WORKDIR}/git" |
9 | B = "${WORKDIR}/build" | 9 | #B = "${WORKDIR}/build" |
10 | B = "${S}" | ||
11 | |||
10 | OECMAKE_SOURCEPATH = "${S}/${ESW_COMPONENT_SRC}" | 12 | OECMAKE_SOURCEPATH = "${S}/${ESW_COMPONENT_SRC}" |
11 | LICFILENAME = "license.txt" | 13 | LICFILENAME = "license.txt" |
12 | 14 | ||