diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-01-04 20:48:18 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-12 13:59:26 +0000 |
commit | eb2fc2cd9081a4533ed30fe81c9f491b06cc5ae1 (patch) | |
tree | d0f94e0656b75c8ad20394f6c547996b0a3a51e3 /meta | |
parent | fb945c0fd2e66d70461e6cf2e602020eeabe32f7 (diff) | |
download | openembedded-core-eb2fc2cd9081a4533ed30fe81c9f491b06cc5ae1.tar.gz openembedded-core-eb2fc2cd9081a4533ed30fe81c9f491b06cc5ae1.tar.bz2 openembedded-core-eb2fc2cd9081a4533ed30fe81c9f491b06cc5ae1.zip |
populate_sdk_ext: whitelist do_package tasks
With enabled SSTATE_MIRRORS sstate code expects mirrors to
contain entries for all tasks, which is not the case for ext
installer as it uses reduced sstate cache.
Added do_package tasks to BB_SETSCENE_ENFORCE_WHITELIST to prevent
installer failing with ERROR: Sstate artifact unavailable
[YOCTO #10832]
(From OE-Core rev: 2ed46ada4b8e496493835e84b36f7e9c367f59d2)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 8cd31f3c06..39f6142741 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass @@ -305,7 +305,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 *:do_package"\n\n') # Hide the config information from bitbake output (since it's fixed within the SDK) f.write('BUILDCFG_HEADER = ""\n\n') |