diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-16 13:36:37 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-21 23:37:26 +0000 |
commit | 492214104a55ec56cc483c9b045038e355c6af7b (patch) | |
tree | 028260f5801c3638f8dc474e3a3d2933bf6a8866 /scripts/lib | |
parent | 364319817a7371f0efc143269ba3ff238d1631d9 (diff) | |
download | poky-492214104a55ec56cc483c9b045038e355c6af7b.tar.gz |
meta/scripts: Change BB_ENV_EXTRA_WHITE -> BB_ENV_PASSTHROUGH_ADDITIONS
After the change to bitbake, update the references in OE-Core to match the updates.
(From OE-Core rev: 193affb9f28b0116c3fd619834f145326fee08c5)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/checklayer/__init__.py | 2 | ||||
-rw-r--r-- | scripts/lib/checklayer/cases/common.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/checklayer/__init__.py b/scripts/lib/checklayer/__init__.py index 9713570841..aa946f3036 100644 --- a/scripts/lib/checklayer/__init__.py +++ b/scripts/lib/checklayer/__init__.py | |||
@@ -293,7 +293,7 @@ def get_signatures(builddir, failsafe=False, machine=None, extravars=None): | |||
293 | sigs = {} | 293 | sigs = {} |
294 | tune2tasks = {} | 294 | tune2tasks = {} |
295 | 295 | ||
296 | cmd = 'BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE BB_SIGNATURE_HANDLER" BB_SIGNATURE_HANDLER="OEBasicHash" ' | 296 | cmd = 'BB_ENV_PASSTHROUGH_ADDITIONS="$BB_ENV_PASSTHROUGH_ADDITIONS BB_SIGNATURE_HANDLER" BB_SIGNATURE_HANDLER="OEBasicHash" ' |
297 | if extravars: | 297 | if extravars: |
298 | cmd += extravars | 298 | cmd += extravars |
299 | cmd += ' ' | 299 | cmd += ' ' |
diff --git a/scripts/lib/checklayer/cases/common.py b/scripts/lib/checklayer/cases/common.py index 318cda169e..491a13953c 100644 --- a/scripts/lib/checklayer/cases/common.py +++ b/scripts/lib/checklayer/cases/common.py | |||
@@ -61,7 +61,7 @@ class CommonCheckLayer(OECheckLayerTestCase): | |||
61 | ''' | 61 | ''' |
62 | msg = [] | 62 | msg = [] |
63 | try: | 63 | try: |
64 | get_signatures(self.td['builddir'], failsafe=False, machine=None, extravars='BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE INHERIT" INHERIT="yocto-check-layer"') | 64 | get_signatures(self.td['builddir'], failsafe=False, machine=None, extravars='BB_ENV_PASSTHROUGH_ADDITIONS="$BB_ENV_PASSTHROUGH_ADDITIONS INHERIT" INHERIT="yocto-check-layer"') |
65 | except RuntimeError as ex: | 65 | except RuntimeError as ex: |
66 | msg.append(str(ex)) | 66 | msg.append(str(ex)) |
67 | if msg: | 67 | if msg: |