diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-12 16:17:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-14 11:35:56 +0000 |
commit | f08808340e2f129a0ef40daabb998e9905c2bce3 (patch) | |
tree | 1b18d8f674cb0f896410c7b55ee2504b0aaa27c4 /meta/lib/oe | |
parent | 6efdcaa5cd597cf90421ef785c9ccc89fd9f207e (diff) | |
download | poky-f08808340e2f129a0ef40daabb998e9905c2bce3.tar.gz |
lib/sstatesig: Update to longer sha256 hash length
Update the code to match the recent switch to sha256 hashes
(From OE-Core rev: 910a8f3e8e350ff5d316faf5e07fb40c6c51f45e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/sstatesig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index 059e165c7a..e0eb87e29f 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py | |||
@@ -494,7 +494,7 @@ def find_siginfo(pn, taskname, taskhashlist, d): | |||
494 | 494 | ||
495 | if not taskhashlist or (len(filedates) < 2 and not foundall): | 495 | if not taskhashlist or (len(filedates) < 2 and not foundall): |
496 | # That didn't work, look in sstate-cache | 496 | # That didn't work, look in sstate-cache |
497 | hashes = taskhashlist or ['?' * 32] | 497 | hashes = taskhashlist or ['?' * 64] |
498 | localdata = bb.data.createCopy(d) | 498 | localdata = bb.data.createCopy(d) |
499 | for hashval in hashes: | 499 | for hashval in hashes: |
500 | localdata.setVar('PACKAGE_ARCH', '*') | 500 | localdata.setVar('PACKAGE_ARCH', '*') |