diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-21 11:10:59 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-22 09:05:04 +0000 |
commit | b631fe91b3939b7981dbf62cb2fb70f7baebe403 (patch) | |
tree | eab702a47b5fa5052e546d2dacaa295c33a313d1 | |
parent | 15d4551521f8c577c52b6fce3c4d6d8afbb0edee (diff) | |
download | openembedded-core-b631fe91b3939b7981dbf62cb2fb70f7baebe403.tar.gz openembedded-core-b631fe91b3939b7981dbf62cb2fb70f7baebe403.tar.bz2 openembedded-core-b631fe91b3939b7981dbf62cb2fb70f7baebe403.zip |
populate_sdk_ext: Add wic-tools to BB_SETSCENE_ENFORCE_WHITELIST
wic-tools has tasks which would always rerun and not come from sstate
to ensure we have a correctly populated sysroot. This is low overhead
and can be ignored from an eSDK perspective.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index f481ccdab7..7c9666c162 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass @@ -306,7 +306,7 @@ python copy_buildsystem () { f.write('SIGGEN_LOCKEDSIGS_TASKSIG_CHECK = "warn"\n\n') # Set up whitelist for run on install - f.write('BB_SETSCENE_ENFORCE_WHITELIST = "%:* *:do_shared_workdir *:do_rm_work"\n\n') + f.write('BB_SETSCENE_ENFORCE_WHITELIST = "%:* *:do_shared_workdir *:do_rm_work wic-tools:*"\n\n') # Hide the config information from bitbake output (since it's fixed within the SDK) f.write('BUILDCFG_HEADER = ""\n\n') |