| Message ID | 0d11c9103f072841baf39166efc133f2a20fc4dc.1760038088.git.steve@sakoman.com |
|---|---|
| State | Accepted, archived |
| Commit | 0d11c9103f072841baf39166efc133f2a20fc4dc |
| Delegated to: | Steve Sakoman |
| Headers | show |
| Series | [kirkstone,01/24] libxml2: fix CVE-2025-9714 | expand |
diff --git a/meta/lib/oeqa/sdk/cases/buildcpio.py b/meta/lib/oeqa/sdk/cases/buildcpio.py index e7fc211a47..00088d0ea0 100644 --- a/meta/lib/oeqa/sdk/cases/buildcpio.py +++ b/meta/lib/oeqa/sdk/cases/buildcpio.py @@ -17,7 +17,7 @@ class BuildCpioTest(OESDKTestCase): """ def test_cpio(self): with tempfile.TemporaryDirectory(prefix="cpio-", dir=self.tc.sdk_dir) as testdir: - tarball = self.fetch(testdir, self.td["DL_DIR"], "https://ftp.gnu.org/gnu/cpio/cpio-2.13.tar.gz") + tarball = self.fetch(testdir, self.td["DL_DIR"], "https://ftpmirror.gnu.org/gnu/cpio/cpio-2.13.tar.gz") dirs = {} dirs["source"] = os.path.join(testdir, "cpio-2.13")
ftp.gnu.org is the main server of the GNU project, however download speed can vary greatly based on one's location. Using ftpmirror.gnu.org should redirect the request to the closest up-to-date mirror, which should result sometimes in significantly faster download speed, depending on one's location. This should also distribute the traffic more across the mirrors. This information was sourced from https://www.gnu.org/prep/ftp.html Signed-off-by: Steve Sakoman <steve@sakoman.com> --- meta/lib/oeqa/sdk/cases/buildcpio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)