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