summaryrefslogtreecommitdiffstats
path: root/meta/classes/sanity.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r--meta/classes/sanity.bbclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 9db3f1d5f3..01bf5f780e 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -380,7 +380,10 @@ def check_connectivity(d):
380 # pointed to a support mechanism. 380 # pointed to a support mechanism.
381 msg = data.getVar('CONNECTIVITY_CHECK_MSG', True) or "" 381 msg = data.getVar('CONNECTIVITY_CHECK_MSG', True) or ""
382 if len(msg) == 0: 382 if len(msg) == 0:
383 msg = "%s. Please ensure your network is configured correctly.\n" % err 383 msg = "%s.\n" % err
384 msg += " Please ensure your host's network is configured correctly,\n"
385 msg += " or set BB_NO_NETWORK = \"1\" to disable network access if\n"
386 msg += " all required sources are on local disk.\n"
384 retval = msg 387 retval = msg
385 388
386 return retval 389 return retval