summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-03-09 11:28:50 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-09 11:50:58 +0000
commit85695054ee9fe194d8b5cb3e8ad5b04ac99f6c29 (patch)
treebe7d615be4983955294d17ac22ccca75296f685b
parent75e93875924d3ef4c94e8cb5069777d45a3154f2 (diff)
downloadopenembedded-core-85695054ee9fe194d8b5cb3e8ad5b04ac99f6c29.tar.gz
local.conf.sample: https and no newline for SSTATE_MIRRORS
Both http and https work, but we will get fewer user questions with https Remove no longer necessary \n character in the sample definition Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/conf/local.conf.sample4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample
index 1edbb73987..c05691de58 100644
--- a/meta/conf/local.conf.sample
+++ b/meta/conf/local.conf.sample
@@ -186,7 +186,7 @@ BB_DISKMON_DIRS ??= "\
# used to accelerate build time. This variable can be used to configure the system
# to search other mirror locations for these objects before it builds the data itself.
#
-# This can be a filesystem directory, or a remote url such as http or ftp. These
+# This can be a filesystem directory, or a remote url such as https or ftp. These
# would contain the sstate-cache results from previous builds (possibly from other
# machines). This variable works like fetcher MIRRORS/PREMIRRORS and points to the
# cache locations to check for the shared objects.
@@ -194,7 +194,7 @@ BB_DISKMON_DIRS ??= "\
# at the end as shown in the examples below. This will be substituted with the
# correct path within the directory structure.
#SSTATE_MIRRORS ?= "\
-#file://.* http://someserver.tld/share/sstate/PATH;downloadfilename=PATH \n \
+#file://.* https://someserver.tld/share/sstate/PATH;downloadfilename=PATH \
#file://.* file:///some/local/dir/sstate/PATH"