From: Shubham Kulkarni Date: Thu, 18 Aug 2022 07:52:38 +0000 (+0530) Subject: sanity: add a comment to ensure CONNECTIVITY_CHECK_URIS is correct X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~3176 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9865176df6b6362a410b0fc3c115d942462dc338;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git sanity: add a comment to ensure CONNECTIVITY_CHECK_URIS is correct In sanity.bbclass, in function check_connectivity : Connectivity is tested by fetching URIs in variable CONNECTIVITY_CHECK_URIS. If none is accessible, the status error is ambiguous. It says to ensure the host's network is correctly configured but never if the remote is available. Signed-off-by: Shubham Kulkarni Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/meta/classes-global/sanity.bbclass b/meta/classes-global/sanity.bbclass index 4104694478e..4a403a2590e 100644 --- a/meta/classes-global/sanity.bbclass +++ b/meta/classes-global/sanity.bbclass @@ -357,6 +357,7 @@ def check_connectivity(d): if len(msg) == 0: msg = "%s.\n" % err msg += " Please ensure your host's network is configured correctly.\n" + msg += " Please ensure CONNECTIVITY_CHECK_URIS is correct and specified URIs are available.\n" msg += " If your ISP or network is blocking the above URL,\n" msg += " try with another domain name, for example by setting:\n" msg += " CONNECTIVITY_CHECK_URIS = \"https://www.example.com/\""