diff options
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 |