summaryrefslogtreecommitdiffstats
path: root/meta-yocto
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-08-25 10:15:55 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-31 20:34:53 +0100
commit705ec50edda7f7fb8c132238fe3f1477384a470e (patch)
treec43e5891c16f28faa6019fe7bd8b209e7849e5a1 /meta-yocto
parentc1c52a88fb6bed1559e2c49bc0db4851e664c19d (diff)
downloadpoky-705ec50edda7f7fb8c132238fe3f1477384a470e.tar.gz
poky.conf: perform network sanity check by default for poky distros
Add CONNECTIVITY_CHECK_URIS to run the network connectivity sanity test for http, https and git sources. The variable is soft-assigned so that it's easily overrideable. Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto')
-rw-r--r--meta-yocto/conf/distro/poky.conf7
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf
index c5fc3b92d3..46b22f4631 100644
--- a/meta-yocto/conf/distro/poky.conf
+++ b/meta-yocto/conf/distro/poky.conf
@@ -54,5 +54,10 @@ ftp://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
54http://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \ 54http://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
55https://.*/.* http://autobuilder.yoctoproject.org/sources/ \n" 55https://.*/.* http://autobuilder.yoctoproject.org/sources/ \n"
56 56
57 57# The CONNECTIVITY_CHECK_URI's are used to test whether we can succesfully
58# fetch from the network (and warn you if not). To disable the test set
59# the variable to be empty.
60CONNECTIVITY_CHECK_URIS ?= "git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=HEAD \
61 https://eula-downloads.yoctoproject.org/index.php \
62 http://bugzilla.yoctoproject.org/report.cgi"
58 63