summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-02-14 15:05:26 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-15 08:17:49 +0000
commita20a4d734d49a58ef1f063d2da32a00d3fd5c312 (patch)
tree817445073d39b1932a0dbe908d9f1afeb34b0409 /meta/conf
parentdc929a944efd3b56841a2b328c0e7bb915eac35b (diff)
downloadpoky-a20a4d734d49a58ef1f063d2da32a00d3fd5c312.tar.gz
default-distrovars: set CONNECTIVITY_CHECK_URIS
Connectivity checking is useful, so set a default value of https://example.com/. This checks both that we have connectivity and HTTPS makes it through any proxies. (From OE-Core rev: 1cd9e258a4a7db98e6cb79ab13450cbb1eb94ba7) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/distro/include/default-distrovars.inc6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc
index f5ec6cef91..76edff6480 100644
--- a/meta/conf/distro/include/default-distrovars.inc
+++ b/meta/conf/distro/include/default-distrovars.inc
@@ -52,3 +52,9 @@ ARCH_DEFAULT_KERNELIMAGETYPE_x86 = "bzImage"
52ARCH_DEFAULT_KERNELIMAGETYPE_x86-64 = "bzImage" 52ARCH_DEFAULT_KERNELIMAGETYPE_x86-64 = "bzImage"
53KERNEL_IMAGETYPE ??= "${ARCH_DEFAULT_KERNELIMAGETYPE}" 53KERNEL_IMAGETYPE ??= "${ARCH_DEFAULT_KERNELIMAGETYPE}"
54KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}" 54KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}"
55
56# The CONNECTIVITY_CHECK_URIS are used to test whether we can succesfully
57# fetch from the network (and warn you if not). To disable the test set
58# the variable to be empty.
59# Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master
60CONNECTIVITY_CHECK_URIS ?= "https://www.example.com/"