aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-26 16:20:18 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-26 17:26:46 +0100
commit3f5f9d2681d41e44dade5d3a5a4bff3fd38f5506 (patch)
tree7c0bba63b3d2cfb182864fb751d7631f7f1cbefe
parent1645a3c1d288a4de38683129ed146198d8093a47 (diff)
downloadopenembedded-core-contrib-3f5f9d2681d41e44dade5d3a5a4bff3fd38f5506.tar.gz
testimage: Exclude BB_ORIGENV variable
The BB_ORIGENV variable isn't picklable and causes failures when generating the task signature for the autorun image mode. We don't want to depend on its contents anyway so lets exclude it. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/testimage.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass
index 86bf22ef02..2f9c974554 100644
--- a/meta/classes/testimage.bbclass
+++ b/meta/classes/testimage.bbclass
@@ -175,3 +175,5 @@ def testimage_main(d):
raise bb.build.FuncFailed("%s - FAILED to start qemu - check the task log and the boot log" % pn)
finally:
qemu.kill()
+
+testimage_main[vardepsexclude] =+ "BB_ORIGENV"