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:51:27 +0000
commit8827a3ed80ec8f0adcf4b778f88cb8f9f051262b (patch)
treec9263f7ca57c14b97db6bbf30f900a7f3b211d82
parent79168e8c19dcc9bce76e196a607ec6b722f836d6 (diff)
downloadpoky-8827a3ed80ec8f0adcf4b778f88cb8f9f051262b.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 (From meta-yocto rev: 2e707748b372dac4c007342cc80e65f2b0afc542) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta-poky/conf/local.conf.sample4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-poky/conf/local.conf.sample b/meta-poky/conf/local.conf.sample
index 87baacac1d..17cbf3a3b3 100644
--- a/meta-poky/conf/local.conf.sample
+++ b/meta-poky/conf/local.conf.sample
@@ -207,7 +207,7 @@ BB_DISKMON_DIRS ??= "\
207# used to accelerate build time. This variable can be used to configure the system 207# used to accelerate build time. This variable can be used to configure the system
208# to search other mirror locations for these objects before it builds the data itself. 208# to search other mirror locations for these objects before it builds the data itself.
209# 209#
210# This can be a filesystem directory, or a remote url such as http or ftp. These 210# This can be a filesystem directory, or a remote url such as https or ftp. These
211# would contain the sstate-cache results from previous builds (possibly from other 211# would contain the sstate-cache results from previous builds (possibly from other
212# machines). This variable works like fetcher MIRRORS/PREMIRRORS and points to the 212# machines). This variable works like fetcher MIRRORS/PREMIRRORS and points to the
213# cache locations to check for the shared objects. 213# cache locations to check for the shared objects.
@@ -215,7 +215,7 @@ BB_DISKMON_DIRS ??= "\
215# at the end as shown in the examples below. This will be substituted with the 215# at the end as shown in the examples below. This will be substituted with the
216# correct path within the directory structure. 216# correct path within the directory structure.
217#SSTATE_MIRRORS ?= "\ 217#SSTATE_MIRRORS ?= "\
218#file://.* http://someserver.tld/share/sstate/PATH;downloadfilename=PATH \ 218#file://.* https://someserver.tld/share/sstate/PATH;downloadfilename=PATH \
219#file://.* file:///some/local/dir/sstate/PATH" 219#file://.* file:///some/local/dir/sstate/PATH"
220 220
221# 221#