diff options
-rw-r--r-- | documentation/ref-manual/faq.xml | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/documentation/ref-manual/faq.xml b/documentation/ref-manual/faq.xml index 197d490745..c51c67598a 100644 --- a/documentation/ref-manual/faq.xml +++ b/documentation/ref-manual/faq.xml | |||
@@ -286,13 +286,22 @@ | |||
286 | </question> | 286 | </question> |
287 | <answer> | 287 | <answer> |
288 | <para> | 288 | <para> |
289 | Most source fetching by the OpenEmbedded build system is done by <filename>wget</filename> | 289 | Most source fetching by the OpenEmbedded build system is done |
290 | and you therefore need to specify the proxy settings in a | 290 | by <filename>wget</filename> and you therefore need to specify |
291 | <filename>.wgetrc</filename> file in your home directory. | 291 | the proxy settings in a <filename>.wgetrc</filename> file |
292 | Here are some example settings: | 292 | in your home directory. |
293 | Following are some example settings for different proxy types: | ||
293 | <literallayout class='monospaced'> | 294 | <literallayout class='monospaced'> |
294 | http_proxy = http://proxy.yoyodyne.com:18023/ | 295 | Http/FTP proxy: |
295 | ftp_proxy = http://proxy.yoyodyne.com:18023/ | 296 | https_proxy = http://proxy.yoyodyne.com:18023/ |
297 | http_proxy = http://proxy.yoyodyne.com:18023/ | ||
298 | ftp_proxy = http://proxy.yoyodyne.com:18023/ | ||
299 | |||
300 | socks proxy: | ||
301 | export SOCKS_SERVER=`<replaceable>server</replaceable>:<replaceable>port</replaceable>` | ||
302 | unset http_proxy | ||
303 | unset https_proxy | ||
304 | unset ftp_proxy | ||
296 | </literallayout> | 305 | </literallayout> |
297 | The Yocto Project also includes a | 306 | The Yocto Project also includes a |
298 | <filename>site.conf.sample</filename> file that shows how to | 307 | <filename>site.conf.sample</filename> file that shows how to |