summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-23 14:24:11 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-04-09 08:27:05 +0100
commit49c0883c91b82e3fa933377fad55c3545a5ac26e (patch)
tree7018955319ff3bfec8341f60ef3fc458b7d25cee
parent0608a3fb0b2af964168c70fea3a5702807b4ea03 (diff)
downloadpoky-49c0883c91b82e3fa933377fad55c3545a5ac26e.tar.gz
sanity: Add warning for local hasheqiv server with remote sstate mirrors
We're seeing a lot of users configuring an sstate mirror but not realising that the default hash equivalenve setting will make this ineffective. Add a warning to highlight this to the user for the common case. (From OE-Core rev: 668ec7b6b2450a3153f6469ea84488dd6db4a936) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> (cherry picked from commit ae4eb33b5a6a037348e8f66e3d4f19b58dba8fa2) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/sanity.bbclass5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 49eef2f418..a175a1104f 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -941,6 +941,11 @@ def check_sanity_everybuild(status, d):
941 mirror_base = urllib.parse.urlparse(mirror[:-1*len('/PATH')]).path 941 mirror_base = urllib.parse.urlparse(mirror[:-1*len('/PATH')]).path
942 check_symlink(mirror_base, d) 942 check_symlink(mirror_base, d)
943 943
944 # Check sstate mirrors aren't being used with a local hash server and no remote
945 hashserv = d.getVar("BB_HASHSERVE")
946 if d.getVar("SSTATE_MIRRORS") and hashserv and hashserv.startswith("unix://") and not d.getVar("BB_HASHSERVE_UPSTREAM"):
947 bb.warn("You are using a local hash equivalence server but have configured an sstate mirror. This will likely mean no sstate will match from the mirror. You may wish to disable the hash equivalence use (BB_HASHSERVE), or use a hash equivalence server alongside the sstate mirror.")
948
944 # Check that TMPDIR hasn't changed location since the last time we were run 949 # Check that TMPDIR hasn't changed location since the last time we were run
945 tmpdir = d.getVar('TMPDIR') 950 tmpdir = d.getVar('TMPDIR')
946 checkfile = os.path.join(tmpdir, "saved_tmpdir") 951 checkfile = os.path.join(tmpdir, "saved_tmpdir")