diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-20 13:05:03 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-20 22:15:47 +0100 |
commit | 624f575298c74272b69560735cb6f13f5a7761c1 (patch) | |
tree | f3059523473b7f6d9f960e421b448ee5090d07e3 /meta/classes | |
parent | 346505144a18b738846b9d5bc6f146426d3572ba (diff) | |
download | openembedded-core-624f575298c74272b69560735cb6f13f5a7761c1.tar.gz openembedded-core-624f575298c74272b69560735cb6f13f5a7761c1.tar.bz2 openembedded-core-624f575298c74272b69560735cb6f13f5a7761c1.zip |
sstate: Add handling of do_shared_workdir task
Changing TMPDIR and rebuilding an image was resulting in rebuilds of
kernels due to dependencies on the shared_workdir task. If installed
from sstate, nothing needs this task so add it to the whitelisted
task patterns.
After this change, the kernel does not rebuild when a new TMPDIR and
hot sstate cache is used.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/sstate.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index d5a0b04d77..b48504429f 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -815,6 +815,9 @@ def setscene_depvalid(task, taskdependees, notneeded, d): # Target populate_sysroot need their dependencies return False + if taskdependees[task][1] == 'do_shared_workdir': + continue + # This is due to the [depends] in useradd.bbclass complicating matters # The logic *is* reversed here due to the way hard setscene dependencies are injected if taskdependees[task][1] == 'do_package' and taskdependees[dep][0].endswith(('shadow-native', 'shadow-sysroot', 'base-passwd', 'pseudo-native')) and taskdependees[dep][1] == 'do_populate_sysroot': |