summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-01-07 13:45:22 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-01-07 23:10:22 +0000
commit049879ba842d89f268b8e3a4e26410d13bc54158 (patch)
tree9cbdadc24211aca86e69e1c9e72978853bd83d39
parent4436c92d9a204f202e0a4f7813250acec17fa72e (diff)
downloadopenembedded-core-contrib-049879ba842d89f268b8e3a4e26410d13bc54158.tar.gz
allarch: Fix interaction with qemu class
The qemu class declares functions which are architecture specific. If a user such as meson is used in an allarch recipe, this leads to sstate which is machine specific. To fix this, remove the architecture specific part, since there are no binaries in allarch classes, this change shouldn't break anything. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/allarch.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/allarch.bbclass b/meta/classes/allarch.bbclass
index 5bd5c44a27..a766a654a9 100644
--- a/meta/classes/allarch.bbclass
+++ b/meta/classes/allarch.bbclass
@@ -61,3 +61,5 @@ python () {
bb.error("Please ensure recipe %s sets PACKAGE_ARCH before inherit packagegroup" % d.getVar("FILE"))
}
+def qemu_wrapper_cmdline(data, rootfs_path, library_paths):
+ return 'false'