]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
scripts/build: Update the git proxy setup instructions
authorRichard Purdie <rpurdie@linux.intel.com>
Thu, 23 Oct 2008 14:12:41 +0000 (15:12 +0100)
committerRichard Purdie <rpurdie@linux.intel.com>
Thu, 23 Oct 2008 14:12:41 +0000 (15:12 +0100)
build/conf/site.conf.sample

index 3215e2c69cbc3b326e53270b45c2363a84701003..f14b3d985ab84f035eac1be1cd50862c96c6539f 100644 (file)
@@ -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/"
+