summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-03-09 16:58:35 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-16 14:25:01 +0000
commit61f3805d0e74103a86a072c199f728c872fe8cfe (patch)
treea7a271d0d6a30bca44e9465cbb600738a294dd06 /documentation
parent809b96e9316076909345d0fa7866f5155aeee767 (diff)
downloadpoky-61f3805d0e74103a86a072c199f728c872fe8cfe.tar.gz
dev-manual: details about using firewalls and limiting fetch threads
Fixes [YOCTO #13235] (From yocto-docs rev: cf76420c50f13762fb800a19931a8af5ae3567cf) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/common-tasks.rst16
1 files changed, 16 insertions, 0 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst
index e71c352549..ca3fbc856a 100644
--- a/documentation/dev-manual/common-tasks.rst
+++ b/documentation/dev-manual/common-tasks.rst
@@ -1476,6 +1476,22 @@ compressed suffixes such as ``diff.gz`` and ``patch.bz2``, for example.
1476The build system automatically applies patches as described in the 1476The build system automatically applies patches as described in the
1477":ref:`dev-manual/common-tasks:patching code`" section. 1477":ref:`dev-manual/common-tasks:patching code`" section.
1478 1478
1479Fetching Code Through Firewalls
1480~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1481
1482Some users are behind firewalls and need to fetch code through a proxy.
1483See the ":doc:`/ref-manual/faq`" chapter for advice.
1484
1485Limiting the Number of Parallel Connections
1486~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1487
1488Some users are behind firewalls or use servers where the number of parallel
1489connections is limited. In such cases, you can limit the number of fetch
1490tasks being run in parallel by adding the following to your ``local.conf``
1491file::
1492
1493 do_fetch[number_threads] = "4"
1494
1479Unpacking Code 1495Unpacking Code
1480-------------- 1496--------------
1481 1497