diff options
| author | Deepak Rathore <deeratho@cisco.com> | 2025-08-28 03:56:09 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-08-28 17:06:59 +0100 |
| commit | ee16a5b7c1bfaf05e7d6c1a814fe095172367246 (patch) | |
| tree | 2cca7e369a7002d45cd4baeace454b0042f48ed7 /meta/conf/distro | |
| parent | 87a25268ba7ce9d76c511e2173c103984fa85298 (diff) | |
| download | poky-ee16a5b7c1bfaf05e7d6c1a814fe095172367246.tar.gz | |
default-distrovars.inc: Fix CONNECTIVITY_CHECK_URIS redirect issue
The default CONNECTIVITY_CHECK_URIS uses "https://yoctoproject.org/connectivity.html"
which redirect to "https://www.yoctoproject.org/connectivity.html".
Some network configurations with proxies or restricted internet access
don't handle HTTP redirects properly during the sanity check phase,
causing build failures with:
ERROR: OE-core's config sanity checker detected a potential misconfiguration.
Either fix the cause of this error or at your own risk disable the checker (see sanity.conf).
Following is the list of potential problems / advisories:
Fetcher failure for URL: 'https://yoctoproject.org/connectivity.html'. URL doesn't work.
Updated the default URL to use the final destination directly to avoid
redirect-related connectivity check failures.
Also updated SDK test cases in https.py to use the corrected URL for
consistency.
(From OE-Core rev: 60cdf960a3560f391babd559737f1afb31fb2c5c)
Signed-off-by: Deepak Rathore <deeratho@cisco.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/distro')
| -rw-r--r-- | meta/conf/distro/include/default-distrovars.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc index 9ea3b5414c..bbd936efa6 100644 --- a/meta/conf/distro/include/default-distrovars.inc +++ b/meta/conf/distro/include/default-distrovars.inc | |||
| @@ -63,4 +63,4 @@ KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}" | |||
| 63 | # fetch from the network (and warn you if not). To disable the test set | 63 | # fetch from the network (and warn you if not). To disable the test set |
| 64 | # the variable to be empty. | 64 | # the variable to be empty. |
| 65 | # Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master;branch=master | 65 | # Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master;branch=master |
| 66 | CONNECTIVITY_CHECK_URIS ?= "https://yoctoproject.org/connectivity.html" | 66 | CONNECTIVITY_CHECK_URIS ?= "https://www.yoctoproject.org/connectivity.html" |
