summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2021-05-05 19:56:15 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-15 17:18:21 +0100
commit6f1d6448c5b2711f04e6b3798aef10b39669bcac (patch)
treefa0c6a8663cba35644c9a374a71d6b882c4c9ee6
parent641848ab75c6538692e9cc12a831a855daca16e2 (diff)
downloadpoky-6f1d6448c5b2711f04e6b3798aef10b39669bcac.tar.gz
sanity.bbclass: mention CONNECTIVITY_CHECK_URIS in network failure message
This expands the error message when a network failure is detected. It happens that some ISPs or networks block the default example.com domain. Therefore, instead of disabling network access, it lets the user know how to modify the test URL. (From OE-Core rev: f54eaf65ff549a98ff98157d6b3aa48f9adc9ca5) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 62c94bb925543c1e1c5af3c751913d9f06d9597d) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/sanity.bbclass9
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 14ffac0bf2..a2ac4eeb80 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -392,9 +392,12 @@ def check_connectivity(d):
392 msg = data.getVar('CONNECTIVITY_CHECK_MSG') or "" 392 msg = data.getVar('CONNECTIVITY_CHECK_MSG') or ""
393 if len(msg) == 0: 393 if len(msg) == 0:
394 msg = "%s.\n" % err 394 msg = "%s.\n" % err
395 msg += " Please ensure your host's network is configured correctly,\n" 395 msg += " Please ensure your host's network is configured correctly.\n"
396 msg += " or set BB_NO_NETWORK = \"1\" to disable network access if\n" 396 msg += " If your ISP or network is blocking the above URL,\n"
397 msg += " all required sources are on local disk.\n" 397 msg += " try with another domain name, for example by setting:\n"
398 msg += " CONNECTIVITY_CHECK_URIS = \"https://www.yoctoproject.org/\""
399 msg += " You could also set BB_NO_NETWORK = \"1\" to disable network\n"
400 msg += " access if all required sources are on local disk.\n"
398 retval = msg 401 retval = msg
399 402
400 return retval 403 return retval