summaryrefslogtreecommitdiffstats
path: root/meta/classes/sanity.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-22 22:01:52 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-22 22:06:19 +0000
commit83007574ccca5e3ebab9e69695833d640ae90465 (patch)
tree39b631dadd51528e767eb18d3491be83f1b1e391 /meta/classes/sanity.bbclass
parentea2c8defd570bc2c4d29c6b0bd9fd84865d4e144 (diff)
downloadpoky-83007574ccca5e3ebab9e69695833d640ae90465.tar.gz
sanity.bbclass: Add ABI version 8, used for transition from the OEBasic to OEBasicHash stamp layout
(From OE-Core rev: bf440fd971dd549ae4e92c54046ea062ef51cd85) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r--meta/classes/sanity.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index a02942875a..d8835dae64 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -431,6 +431,8 @@ def check_sanity(e):
431 os.system(bb.data.expand("mv ${TMPDIR}/pstagelogs ${SSTATE_MANIFESTS}", e.data)) 431 os.system(bb.data.expand("mv ${TMPDIR}/pstagelogs ${SSTATE_MANIFESTS}", e.data))
432 f = file(abifile, "w") 432 f = file(abifile, "w")
433 f.write(current_abi) 433 f.write(current_abi)
434 elif abi == "7" and current_abi == "8":
435 messages = messages + "Your configuration is using stamp files including the sstate hash but your build directory was built with stamp files that do not include this.\nTo continue, either rebuild or switch back to the OEBasic signature handler with BB_SIGNATURE_HANDLER = 'OEBasic'.\n"
434 elif (abi != current_abi): 436 elif (abi != current_abi):
435 # Code to convert from one ABI to another could go here if possible. 437 # Code to convert from one ABI to another could go here if possible.
436 messages = messages + "Error, TMPDIR has changed its layout version number (%s to %s) and you need to either rebuild, revert or adjust it at your own risk.\n" % (abi, current_abi) 438 messages = messages + "Error, TMPDIR has changed its layout version number (%s to %s) and you need to either rebuild, revert or adjust it at your own risk.\n" % (abi, current_abi)