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 /meta/classes/populate_sdk_ext.bbclass | |
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 'meta/classes/populate_sdk_ext.bbclass')
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index ef93b6a826..2a80659d9a 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -282,7 +282,7 @@ python copy_buildsystem () { | |||
282 | bb.utils.mkdirhier(uninative_outdir) | 282 | bb.utils.mkdirhier(uninative_outdir) |
283 | shutil.copy(uninative_file, uninative_outdir) | 283 | shutil.copy(uninative_file, uninative_outdir) |
284 | 284 | ||
285 | env_whitelist = (d.getVar('BB_ENV_EXTRAWHITE') or '').split() | 285 | env_whitelist = (d.getVar('BB_ENV_PASSTHROUGH_ADDITIONS') or '').split() |
286 | env_whitelist_values = {} | 286 | env_whitelist_values = {} |
287 | 287 | ||
288 | # Create local.conf | 288 | # Create local.conf |
@@ -436,7 +436,7 @@ python copy_buildsystem () { | |||
436 | f.write('meta/conf\n') | 436 | f.write('meta/conf\n') |
437 | 437 | ||
438 | # Ensure any variables set from the external environment (by way of | 438 | # Ensure any variables set from the external environment (by way of |
439 | # BB_ENV_EXTRAWHITE) are set in the SDK's configuration | 439 | # BB_ENV_PASSTHROUGH_ADDITIONS) are set in the SDK's configuration |
440 | extralines = [] | 440 | extralines = [] |
441 | for name, value in env_whitelist_values.items(): | 441 | for name, value in env_whitelist_values.items(): |
442 | actualvalue = d.getVar(name) or '' | 442 | actualvalue = d.getVar(name) or '' |