[PATCH] sstate: Fix rebuilds when changing layer config
From: Richard Purdie <hidden>
Date: 2021-08-01 12:48:59
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Richard Purdie <hidden>
Date: 2021-08-01 12:48:59
Subsystem:
the rest · Maintainer:
Linus Torvalds
When adding a layer which changed SSTATE_EXCLUDEDEPS_SYSROOT, the state hashes were changing when they should not. This was caused by wider use of setscene_depvalid which means the dependency on the variable was seen when it was previously not. Exclude the variable since this should be be included in the hashes. Signed-off-by: Richard Purdie <redacted> --- meta/classes/sstate.bbclass | 1 + 1 file changed, 1 insertion(+)
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index f6710fc2835..554e401ee25 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass@@ -1018,6 +1018,7 @@ def sstate_checkhashes(sq_data, d, siginfo=False, currentcount=0, summary=True, bb.parse.siggen.checkhashes(sq_data, missed, found, d) return found +setscene_depvalid[vardepsexclude] = "SSTATE_EXCLUDEDEPS_SYSROOT" BB_SETSCENE_DEPVALID = "setscene_depvalid"
--
2.30.2