diff options
author | Jon Mason <jdmason@kudzu.us> | 2021-10-05 18:45:12 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-08 22:01:24 +0100 |
commit | 4ca20be7fe65b752b424cfaacbb107edb06e3362 (patch) | |
tree | f78b21fc2e68dbba6e32472ae685b3f688f1fc00 /documentation/ref-manual/faq.rst | |
parent | 60b02e9daa0bf545ddb54c3796fe4eda9fe56f92 (diff) | |
download | poky-4ca20be7fe65b752b424cfaacbb107edb06e3362.tar.gz |
documentation: update sources mirror URL
The URL for the sources mirror no longer works. Update to the new
location.
(From yocto-docs rev: 616c326437c03d7f4530168c4c9d6ef50743952e)
Signed-off-by: Jon Mason <jdmason@kudzu.us>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual/faq.rst')
-rw-r--r-- | documentation/ref-manual/faq.rst | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/documentation/ref-manual/faq.rst b/documentation/ref-manual/faq.rst index f40367bd58..e4d3d3e963 100644 --- a/documentation/ref-manual/faq.rst +++ b/documentation/ref-manual/faq.rst | |||
@@ -302,10 +302,10 @@ attempt before any others by adding something like the following to the | |||
302 | ``local.conf`` configuration file:: | 302 | ``local.conf`` configuration file:: |
303 | 303 | ||
304 | PREMIRRORS:prepend = "\ | 304 | PREMIRRORS:prepend = "\ |
305 | git://.*/.* http://www.yoctoproject.org/sources/ \n \ | 305 | git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
306 | ftp://.*/.* http://www.yoctoproject.org/sources/ \n \ | 306 | ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
307 | http://.*/.* http://www.yoctoproject.org/sources/ \n \ | 307 | http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
308 | https://.*/.* http://www.yoctoproject.org/sources/ \n" | 308 | https://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n" |
309 | 309 | ||
310 | These changes cause the build system to intercept Git, FTP, HTTP, and | 310 | These changes cause the build system to intercept Git, FTP, HTTP, and |
311 | HTTPS requests and direct them to the ``http://`` sources mirror. You | 311 | HTTPS requests and direct them to the ``http://`` sources mirror. You |
@@ -342,9 +342,10 @@ You could make the following changes to the ``local.conf`` configuration | |||
342 | file as long as the :term:`PREMIRRORS` server is current:: | 342 | file as long as the :term:`PREMIRRORS` server is current:: |
343 | 343 | ||
344 | PREMIRRORS:prepend = "\ | 344 | PREMIRRORS:prepend = "\ |
345 | ftp://.*/.* http://www.yoctoproject.org/sources/ \n \ | 345 | git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
346 | http://.*/.* http://www.yoctoproject.org/sources/ \n \ | 346 | ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
347 | https://.*/.* http://www.yoctoproject.org/sources/ \n" | 347 | http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
348 | https://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n" | ||
348 | BB_FETCH_PREMIRRORONLY = "1" | 349 | BB_FETCH_PREMIRRORONLY = "1" |
349 | 350 | ||
350 | These changes would cause the build system to successfully fetch source | 351 | These changes would cause the build system to successfully fetch source |