diff options
-rw-r--r-- | meta/classes/sanity.bbclass | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 83bced2db3..2325ee2747 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 |