diff options
author | Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> | 2019-05-07 23:12:52 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-20 14:38:16 +0100 |
commit | 64fa42868df98dd87fb1f5ad74977ac833936cb5 (patch) | |
tree | fa7048dc143387848de22fb46711d3388e69ff45 /meta/conf/bitbake.conf | |
parent | 7a960890992f1c26750d709be90ddd9c09627fa2 (diff) | |
download | poky-64fa42868df98dd87fb1f5ad74977ac833936cb5.tar.gz |
bitbake.conf: use https instead of http
Use HTTPS instead of HTTP whenever one is available.
(From OE-Core rev: 0e7cef6d2f1093eac3046499e99148efcf977713)
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index b4e8990473..a8bafd294e 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -628,28 +628,28 @@ BUILD_OPTIMIZATION[vardeps] += "DEBUG_BUILD" | |||
628 | ################################################################## | 628 | ################################################################## |
629 | # Settings used by bitbake-layers. | 629 | # Settings used by bitbake-layers. |
630 | ################################################################## | 630 | ################################################################## |
631 | BBLAYERS_LAYERINDEX_URL ??= "http://layers.openembedded.org/layerindex/" | 631 | BBLAYERS_LAYERINDEX_URL ??= "https://layers.openembedded.org/layerindex/" |
632 | BBLAYERS_FETCH_DIR ??= "${COREBASE}" | 632 | BBLAYERS_FETCH_DIR ??= "${COREBASE}" |
633 | 633 | ||
634 | ################################################################## | 634 | ################################################################## |
635 | # Download locations and utilities. | 635 | # Download locations and utilities. |
636 | ################################################################## | 636 | ################################################################## |
637 | 637 | ||
638 | APACHE_MIRROR = "http://archive.apache.org/dist" | 638 | APACHE_MIRROR = "https://archive.apache.org/dist" |
639 | DEBIAN_MIRROR = "http://ftp.debian.org/debian/pool" | 639 | DEBIAN_MIRROR = "http://ftp.debian.org/debian/pool" |
640 | GENTOO_MIRROR = "http://distfiles.gentoo.org/distfiles" | 640 | GENTOO_MIRROR = "http://distfiles.gentoo.org/distfiles" |
641 | GNOME_GIT = "git://gitlab.gnome.org/GNOME" | 641 | GNOME_GIT = "git://gitlab.gnome.org/GNOME" |
642 | GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources" | 642 | GNOME_MIRROR = "https://ftp.gnome.org/pub/GNOME/sources" |
643 | GNU_MIRROR = "http://ftp.gnu.org/gnu" | 643 | GNU_MIRROR = "https://ftp.gnu.org/gnu" |
644 | GNUPG_MIRROR = "https://www.gnupg.org/ftp/gcrypt" | 644 | GNUPG_MIRROR = "https://www.gnupg.org/ftp/gcrypt" |
645 | GPE_MIRROR = "http://gpe.linuxtogo.org/download/source" | 645 | GPE_MIRROR = "http://gpe.linuxtogo.org/download/source" |
646 | KERNELORG_MIRROR = "http://cdn.kernel.org/pub" | 646 | KERNELORG_MIRROR = "https://cdn.kernel.org/pub" |
647 | SOURCEFORGE_MIRROR = "http://downloads.sourceforge.net" | 647 | SOURCEFORGE_MIRROR = "https://downloads.sourceforge.net" |
648 | XLIBS_MIRROR = "http://xlibs.freedesktop.org/release" | 648 | XLIBS_MIRROR = "https://xlibs.freedesktop.org/release" |
649 | XORG_MIRROR = "http://xorg.freedesktop.org/releases" | 649 | XORG_MIRROR = "http://xorg.freedesktop.org/releases" |
650 | SAVANNAH_GNU_MIRROR = "http://download.savannah.gnu.org/releases" | 650 | SAVANNAH_GNU_MIRROR = "https://download.savannah.gnu.org/releases" |
651 | SAVANNAH_NONGNU_MIRROR = "http://download.savannah.nongnu.org/releases" | 651 | SAVANNAH_NONGNU_MIRROR = "https://download.savannah.nongnu.org/releases" |
652 | CPAN_MIRROR = "http://search.cpan.org/CPAN" | 652 | CPAN_MIRROR = "https://search.cpan.org/CPAN" |
653 | 653 | ||
654 | SRC_URI[vardepsexclude] += "\ | 654 | SRC_URI[vardepsexclude] += "\ |
655 | APACHE_MIRROR \ | 655 | APACHE_MIRROR \ |