From patchwork Wed Mar 9 10:28:50 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Opdenacker X-Patchwork-Id: 4990 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 42FDDC433EF for ; Wed, 9 Mar 2022 10:28:56 +0000 (UTC) Received: from relay10.mail.gandi.net (relay10.mail.gandi.net [217.70.178.230]) by mx.groups.io with SMTP id smtpd.web12.4153.1646821734916822738 for ; Wed, 09 Mar 2022 02:28:55 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@bootlin.com header.s=gm1 header.b=JO918mRD; spf=pass (domain: bootlin.com, ip: 217.70.178.230, mailfrom: michael.opdenacker@bootlin.com) Received: (Authenticated sender: michael.opdenacker@bootlin.com) by mail.gandi.net (Postfix) with ESMTPSA id 152F124000A; Wed, 9 Mar 2022 10:28:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1646821733; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=SQ3oeDLBiVL8ykJ6yFrmCGVoZa2PG2EE7WlPD7cfBXw=; b=JO918mRDzsBNdNlAPFx1x+0gsUJ7CLH6QXDljJVsAq8sQkW75664L2UUKeGgu7L8RgFRFc YF2DP6X8uQ5url9YfbQrQZ5Ha1PdKIuxb8TACNM/EvuwvtGLVyaUdVsqyCUlpPaiJCiHsn N2nRqKTvqXqMqV5FF3c7u0bMBj9cWH+s0oxzU+oeUicWPHDVG7l1C9M0l3BZrRpG3bKTm0 +x6zMmEXRFRmVlN2zteYzkOr3lnCI9oXmxJh73Atm0wBxFcW9aQYBNUjt7fGojo315PLMV jRstMZlzBF1nfsXcoaHWn6vJn+wEtOOOCOjxs0FKJoIO0UXrY3w+b0jZPAzCjA== From: Michael Opdenacker To: openembedded-core@lists.openembedded.org Cc: Michael Opdenacker Subject: [PATCH] local.conf.sample: https and no newline for SSTATE_MIRRORS Date: Wed, 9 Mar 2022 11:28:50 +0100 Message-Id: <20220309102850.607681-1-michael.opdenacker@bootlin.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 09 Mar 2022 10:28:56 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/162956 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 Reviewed-by: Quentin Schulz --- meta/conf/local.conf.sample | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample index 82efc2c4f5..4d0883302b 100644 --- a/meta/conf/local.conf.sample +++ b/meta/conf/local.conf.sample @@ -185,7 +185,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. @@ -193,7 +193,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"