diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-16 16:42:58 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-28 11:31:17 +0000 |
commit | 9d5483c37523ff3d334c98cafb848282b54962cd (patch) | |
tree | adb5f8967d92046bbd77d702caf33aeb63d5cccf /meta-poky/conf/site.conf.sample | |
parent | ab3a71833c7f446aeed7e2aebbd3e20d484c71ff (diff) | |
download | poky-9d5483c37523ff3d334c98cafb848282b54962cd.tar.gz |
meta-yocto: Rename to meta-poky to better match its purpose
"poky" is the reference distribution for the Yocto Project. This renames
the layer within the meta-yocto repository to meta-poky, better matching
what that layer contains.
A layer.conf file is left behind as this is the only way which allows
existing builds to migrate safely to the new name. It will be removed
at some future point.
This change requires the corresponding OE-Core change to handle the
migration and the changes to the infrastructure to support this.
(From meta-yocto rev: d0c88df2e14672fca4ebbde93c5efbcd0e4fa9b6)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-poky/conf/site.conf.sample')
-rw-r--r-- | meta-poky/conf/site.conf.sample | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-poky/conf/site.conf.sample b/meta-poky/conf/site.conf.sample new file mode 100644 index 0000000000..c551e8fb0c --- /dev/null +++ b/meta-poky/conf/site.conf.sample | |||
@@ -0,0 +1,31 @@ | |||
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.sh. 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. | ||
27 | # See the script for details on syntax. | ||
28 | |||
29 | # Uncomment this to use a shared download directory | ||
30 | #DL_DIR = "/some/shared/download/directory/" | ||
31 | |||