diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2008-10-23 15:12:41 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2008-10-23 15:12:41 +0100 |
commit | e4aa77e88efe49d38c63cb70f9d0c48a9dc3461f (patch) | |
tree | d1500341e732dc0d0e28715ef66a96a4abb5212e /build | |
parent | d3bf7895aa8881009ebe6b19732369577e24a0df (diff) | |
download | openembedded-core-e4aa77e88efe49d38c63cb70f9d0c48a9dc3461f.tar.gz openembedded-core-e4aa77e88efe49d38c63cb70f9d0c48a9dc3461f.tar.bz2 openembedded-core-e4aa77e88efe49d38c63cb70f9d0c48a9dc3461f.zip |
scripts/build: Update the git proxy setup instructions
Diffstat (limited to 'build')
-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 @@ #CVS_PROXY_HOST = "proxy.example.com" #CVS_PROXY_PORT = "81" -# Uncomment to cause git to use the proxy host specificed +# For svn, you need to create ~/.subversion/servers containing: +#[global] +#http-proxy-host = proxy.example.com +#http-proxy-port = 81 +# + +# Uncomment to cause git to use the proxy host specificed +# although this only works for http #GIT_PROXY_HOST = "proxy.example.com" #GIT_PROXY_PORT = "81" #export GIT_PROXY_COMMAND = "${OEROOT}/scripts/poky-git-proxy-command" +# If SOCKS is available run the following command to comple a simple transport +# gcc scripts/poky-git-proxy-socks.c -o poky-git-proxy-socks +# and then share that binary somewhere in PATH, then use the following settings +#GIT_PROXY_HOST = "proxy.example.com" +#GIT_PROXY_PORT = "81" +#export GIT_PROXY_COMMAND = "${OEROOT}/scripts/poky-git-proxy-socks-command" + + # Uncomment this to use a shared download directory -#DL_DIR = "/some/shared/download/directory/"
\ No newline at end of file +#DL_DIR = "/some/shared/download/directory/" + |