| Message ID | 20260609164032.1415124-3-sandeep.gundlupet-raju@amd.com |
|---|---|
| State | Accepted, archived |
| Commit | 6d15c407fd8f1ca92494307c405b6ae1bc703e8b |
| Delegated to: | Tim Orling |
| Headers | show |
| Series | Add app dir support | expand |
On Tue, Jun 9, 2026 at 9:40 AM Sandeep Gundlupet Raju < sandeep.gundlupet-raju@amd.com> wrote: > Replace google.com with yoctoproject.org as the HTTPS test URL. > google.com may be blocked or considered unsafe on some Linux host > environments, while yoctoproject.org is a more appropriate and > reliable choice for a Yocto/OE layer index deployment. > > AI-Generated: GitHub Copilot (Claude Sonnet 4.6) > > Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> > --- > docker/connectivity_check.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/docker/connectivity_check.sh b/docker/connectivity_check.sh > index 2e46ce4..630d0dc 100755 > --- a/docker/connectivity_check.sh > +++ b/docker/connectivity_check.sh > @@ -18,7 +18,7 @@ if ! wget -q $HTTP_TEST_URL ; then > exit 1 > fi > > -HTTPS_TEST_URL="https://google.com" > +HTTPS_TEST_URL="https://yoctoproject.org" > The yoctoproject.org site downloads a lot, but we have an existing connectivity check URL. openembedded-core/meta/conf/distro/include/default-distrovars.inc:CONNECTIVITY_CHECK_URIS ?= "https://www.yoctoproject.org/connectivity.html" I will just make the edit before pushing the commit. if ! wget -q $HTTPS_TEST_URL ; then > echo "ERROR: failed to fetch $HTTPS_TEST_URL" > cleanup_tmp > -- > 2.43.0 > >
diff --git a/docker/connectivity_check.sh b/docker/connectivity_check.sh index 2e46ce4..630d0dc 100755 --- a/docker/connectivity_check.sh +++ b/docker/connectivity_check.sh @@ -18,7 +18,7 @@ if ! wget -q $HTTP_TEST_URL ; then exit 1 fi -HTTPS_TEST_URL="https://google.com" +HTTPS_TEST_URL="https://yoctoproject.org" if ! wget -q $HTTPS_TEST_URL ; then echo "ERROR: failed to fetch $HTTPS_TEST_URL" cleanup_tmp
Replace google.com with yoctoproject.org as the HTTPS test URL. google.com may be blocked or considered unsafe on some Linux host environments, while yoctoproject.org is a more appropriate and reliable choice for a Yocto/OE layer index deployment. AI-Generated: GitHub Copilot (Claude Sonnet 4.6) Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> --- docker/connectivity_check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)