* [PATCH] sstatesig.py: Fix image regeneration issue
@ 2013-11-27 17:57 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2013-11-27 17:57 UTC (permalink / raw)
To: openembedded-core
With the "ABI safe" recipes, we've been excluding those from signatures. This
is fine in the general case but in the specific case of image recipes it breaks.
A good test case is the interfaces file. Editing this causes init-ifupdown
to rebuild but not an image containing it (e.g. core-image-minimal).
We need to ensure the checksums are added to the image recipes and this change
does that.
[YOCTO #5585]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py
index 33ff892..329c84d 100644
--- a/meta/lib/oe/sstatesig.py
+++ b/meta/lib/oe/sstatesig.py
@@ -14,6 +14,8 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache):
def isPackageGroup(fn):
inherits = " ".join(dataCache.inherits[fn])
return "packagegroup.bbclass" in inherits
+ def isImage(fn):
+ return "image.bbclass" in " ".join(dataCache.inherits[fn])
# Always include our own inter-task dependencies
if recipename == depname:
@@ -39,7 +41,7 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache):
return False
# Exclude well defined machine specific configurations which don't change ABI
- if depname in siggen.abisaferecipes:
+ if depname in siggen.abisaferecipes and not isImage(fn):
return False
# Exclude well defined recipe->dependency
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-11-27 17:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-27 17:57 [PATCH] sstatesig.py: Fix image regeneration issue Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.