diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-14 22:34:51 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-21 15:29:01 +0100 |
commit | d67fbf68f6923431e6c825cc92e0059d7dc901fb (patch) | |
tree | b6f6ec0a4d2f3903a8df549e0d4e7dee8903fdff /scripts/lib | |
parent | b36c32ca2bdbe6889d134c8bf80db9282f90f050 (diff) | |
download | poky-d67fbf68f6923431e6c825cc92e0059d7dc901fb.tar.gz |
yocto-check-layer: Ensure we use OEBasicHash as the signature handler
The layer checks are designed to work with OEBasicHash so ensure that handler
is in use rather than the new hash equivalency one as an example.
(From OE-Core rev: a10bf92516a4771e2dc49ba9f74323d7a87a1619)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/checklayer/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/checklayer/__init__.py b/scripts/lib/checklayer/__init__.py index 8244cf0720..5aeec2f00f 100644 --- a/scripts/lib/checklayer/__init__.py +++ b/scripts/lib/checklayer/__init__.py | |||
@@ -245,7 +245,7 @@ def get_signatures(builddir, failsafe=False, machine=None): | |||
245 | sigs = {} | 245 | sigs = {} |
246 | tune2tasks = {} | 246 | tune2tasks = {} |
247 | 247 | ||
248 | cmd = '' | 248 | cmd = 'BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE BB_SIGNATURE_HANDLER" BB_SIGNATURE_HANDLER="OEBasicHash" ' |
249 | if machine: | 249 | if machine: |
250 | cmd += 'MACHINE=%s ' % machine | 250 | cmd += 'MACHINE=%s ' % machine |
251 | cmd += 'bitbake ' | 251 | cmd += 'bitbake ' |