1*4882a593Smuzhiyun# 2*4882a593Smuzhiyun# local.conf covers user settings, site.conf covers site specific information 3*4882a593Smuzhiyun# such as proxy server addresses and optionally any shared download location 4*4882a593Smuzhiyun# 5*4882a593Smuzhiyun# SITE_CONF_VERSION is increased each time build/conf/site.conf 6*4882a593Smuzhiyun# changes incompatibly 7*4882a593SmuzhiyunSCONF_VERSION = "1" 8*4882a593Smuzhiyun 9*4882a593Smuzhiyun# Uncomment to cause CVS to use the proxy host specified 10*4882a593Smuzhiyun#CVS_PROXY_HOST = "proxy.example.com" 11*4882a593Smuzhiyun#CVS_PROXY_PORT = "81" 12*4882a593Smuzhiyun 13*4882a593Smuzhiyun# For svn, you need to create ~/.subversion/servers containing: 14*4882a593Smuzhiyun#[global] 15*4882a593Smuzhiyun#http-proxy-host = proxy.example.com 16*4882a593Smuzhiyun#http-proxy-port = 81 17*4882a593Smuzhiyun# 18*4882a593Smuzhiyun 19*4882a593Smuzhiyun# To use git with a proxy, you must use an external git proxy command, such as 20*4882a593Smuzhiyun# the one provided by scripts/oe-git-proxy. To use this script, copy it to 21*4882a593Smuzhiyun# your PATH and uncomment the following: 22*4882a593Smuzhiyun#GIT_PROXY_COMMAND ?= "oe-git-proxy" 23*4882a593Smuzhiyun#ALL_PROXY ?= "socks://socks.example.com:1080" 24*4882a593Smuzhiyun#or 25*4882a593Smuzhiyun#ALL_PROXY ?= "https://proxy.example.com:8080" 26*4882a593Smuzhiyun# If you wish to use certain hosts without the proxy, specify them in NO_PROXY. 27*4882a593Smuzhiyun# See the script for details on syntax. The script oe-git-proxy uses some tools 28*4882a593Smuzhiyun# that may not be included on HOSTTOOLS, thus add them manually through 29*4882a593Smuzhiyun# HOSTTOOLS += "getent" 30*4882a593Smuzhiyun 31*4882a593Smuzhiyun# Uncomment this to use a shared download directory 32*4882a593Smuzhiyun#DL_DIR = "/some/shared/download/directory/" 33*4882a593Smuzhiyun 34