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-08 23:00:32 +0100 |
commit | 601cb3b5e029d2508e31ae0c26e4ffb6a5b40a65 (patch) | |
tree | 9fc767f3493fd08a22e5e871e945eb774f2d20e8 /meta/conf/bitbake.conf | |
parent | 602667a2b87947cec538d42034d21e0610dd5728 (diff) | |
download | poky-601cb3b5e029d2508e31ae0c26e4ffb6a5b40a65.tar.gz |
bitbake.conf: use https instead of http
Use HTTPS instead of HTTP whenever one is available.
(From OE-Core rev: 686d0e1c6d5b9ccbcd80fcf727f18d5c2d5968f9)
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.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 14b0764f22..c13e4f3f71 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -631,28 +631,28 @@ BUILD_OPTIMIZATION[vardeps] += "DEBUG_BUILD" | |||
631 | ################################################################## | 631 | ################################################################## |
632 | # Settings used by bitbake-layers. | 632 | # Settings used by bitbake-layers. |
633 | ################################################################## | 633 | ################################################################## |
634 | BBLAYERS_LAYERINDEX_URL ??= "http://layers.openembedded.org/layerindex/" | 634 | BBLAYERS_LAYERINDEX_URL ??= "https://layers.openembedded.org/layerindex/" |
635 | BBLAYERS_FETCH_DIR ??= "${COREBASE}" | 635 | BBLAYERS_FETCH_DIR ??= "${COREBASE}" |
636 | 636 | ||
637 | ################################################################## | 637 | ################################################################## |
638 | # Download locations and utilities. | 638 | # Download locations and utilities. |
639 | ################################################################## | 639 | ################################################################## |
640 | 640 | ||
641 | APACHE_MIRROR = "http://archive.apache.org/dist" | 641 | APACHE_MIRROR = "https://archive.apache.org/dist" |
642 | DEBIAN_MIRROR = "http://ftp.debian.org/debian/pool" | 642 | DEBIAN_MIRROR = "http://ftp.debian.org/debian/pool" |
643 | GENTOO_MIRROR = "http://distfiles.gentoo.org/distfiles" | 643 | GENTOO_MIRROR = "http://distfiles.gentoo.org/distfiles" |
644 | GNOME_GIT = "git://gitlab.gnome.org/GNOME" | 644 | GNOME_GIT = "git://gitlab.gnome.org/GNOME" |
645 | GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources" | 645 | GNOME_MIRROR = "https://ftp.gnome.org/pub/GNOME/sources" |
646 | GNU_MIRROR = "http://ftp.gnu.org/gnu" | 646 | GNU_MIRROR = "https://ftp.gnu.org/gnu" |
647 | GNUPG_MIRROR = "https://www.gnupg.org/ftp/gcrypt" | 647 | GNUPG_MIRROR = "https://www.gnupg.org/ftp/gcrypt" |
648 | GPE_MIRROR = "http://gpe.linuxtogo.org/download/source" | 648 | GPE_MIRROR = "http://gpe.linuxtogo.org/download/source" |
649 | KERNELORG_MIRROR = "http://cdn.kernel.org/pub" | 649 | KERNELORG_MIRROR = "https://cdn.kernel.org/pub" |
650 | SOURCEFORGE_MIRROR = "http://downloads.sourceforge.net" | 650 | SOURCEFORGE_MIRROR = "https://downloads.sourceforge.net" |
651 | XLIBS_MIRROR = "http://xlibs.freedesktop.org/release" | 651 | XLIBS_MIRROR = "https://xlibs.freedesktop.org/release" |
652 | XORG_MIRROR = "http://xorg.freedesktop.org/releases" | 652 | XORG_MIRROR = "http://xorg.freedesktop.org/releases" |
653 | SAVANNAH_GNU_MIRROR = "http://download.savannah.gnu.org/releases" | 653 | SAVANNAH_GNU_MIRROR = "https://download.savannah.gnu.org/releases" |
654 | SAVANNAH_NONGNU_MIRROR = "http://download.savannah.nongnu.org/releases" | 654 | SAVANNAH_NONGNU_MIRROR = "https://download.savannah.nongnu.org/releases" |
655 | CPAN_MIRROR = "http://search.cpan.org/CPAN" | 655 | CPAN_MIRROR = "https://search.cpan.org/CPAN" |
656 | 656 | ||
657 | SRC_URI[vardepsexclude] += "\ | 657 | SRC_URI[vardepsexclude] += "\ |
658 | APACHE_MIRROR \ | 658 | APACHE_MIRROR \ |