diff options
Diffstat (limited to 'build/conf/site.conf.sample')
-rw-r--r-- | build/conf/site.conf.sample | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/build/conf/site.conf.sample b/build/conf/site.conf.sample index 3215e2c69c..f14b3d985a 100644 --- a/build/conf/site.conf.sample +++ b/build/conf/site.conf.sample | |||
@@ -7,10 +7,26 @@ | |||
7 | #CVS_PROXY_HOST = "proxy.example.com" | 7 | #CVS_PROXY_HOST = "proxy.example.com" |
8 | #CVS_PROXY_PORT = "81" | 8 | #CVS_PROXY_PORT = "81" |
9 | 9 | ||
10 | # Uncomment to cause git to use the proxy host specificed | 10 | # For svn, you need to create ~/.subversion/servers containing: |
11 | #[global] | ||
12 | #http-proxy-host = proxy.example.com | ||
13 | #http-proxy-port = 81 | ||
14 | # | ||
15 | |||
16 | # Uncomment to cause git to use the proxy host specificed | ||
17 | # although this only works for http | ||
11 | #GIT_PROXY_HOST = "proxy.example.com" | 18 | #GIT_PROXY_HOST = "proxy.example.com" |
12 | #GIT_PROXY_PORT = "81" | 19 | #GIT_PROXY_PORT = "81" |
13 | #export GIT_PROXY_COMMAND = "${OEROOT}/scripts/poky-git-proxy-command" | 20 | #export GIT_PROXY_COMMAND = "${OEROOT}/scripts/poky-git-proxy-command" |
14 | 21 | ||
22 | # If SOCKS is available run the following command to comple a simple transport | ||
23 | # gcc scripts/poky-git-proxy-socks.c -o poky-git-proxy-socks | ||
24 | # and then share that binary somewhere in PATH, then use the following settings | ||
25 | #GIT_PROXY_HOST = "proxy.example.com" | ||
26 | #GIT_PROXY_PORT = "81" | ||
27 | #export GIT_PROXY_COMMAND = "${OEROOT}/scripts/poky-git-proxy-socks-command" | ||
28 | |||
29 | |||
15 | # Uncomment this to use a shared download directory | 30 | # Uncomment this to use a shared download directory |
16 | #DL_DIR = "/some/shared/download/directory/" \ No newline at end of file | 31 | #DL_DIR = "/some/shared/download/directory/" |
32 | |||