site.conf.sample 1.2 KB

123456789101112131415161718192021222324252627282930313233
  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. # Uncomment to cause CVS to use the proxy host specified
  9. #CVS_PROXY_HOST = "proxy.example.com"
  10. #CVS_PROXY_PORT = "81"
  11. # For svn, you need to create ~/.subversion/servers containing:
  12. #[global]
  13. #http-proxy-host = proxy.example.com
  14. #http-proxy-port = 81
  15. #
  16. # To use git with a proxy, you must use an external git proxy command, such as
  17. # the one provided by scripts/oe-git-proxy. To use this script, copy it to
  18. # your PATH and uncomment the following:
  19. #GIT_PROXY_COMMAND ?= "oe-git-proxy"
  20. #ALL_PROXY ?= "socks://socks.example.com:1080"
  21. #or
  22. #ALL_PROXY ?= "https://proxy.example.com:8080"
  23. # If you wish to use certain hosts without the proxy, specify them in NO_PROXY.
  24. # See the script for details on syntax. The script oe-git-proxy uses some tools
  25. # that may not be included on HOSTTOOLS, thus add them manually through
  26. # HOSTTOOLS += "getent"
  27. # Uncomment this to use a shared download directory
  28. #DL_DIR = "/some/shared/download/directory/"