diff options
-rw-r--r-- | meta/classes/mirrors.bbclass | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta/classes/mirrors.bbclass b/meta/classes/mirrors.bbclass index 9b72473475..b98684f5c6 100644 --- a/meta/classes/mirrors.bbclass +++ b/meta/classes/mirrors.bbclass | |||
@@ -62,3 +62,14 @@ npm://.*/.* http://sources.openembedded.org/ \n \ | |||
62 | ${CPAN_MIRROR} http://cpan.metacpan.org/ \n \ | 62 | ${CPAN_MIRROR} http://cpan.metacpan.org/ \n \ |
63 | ${CPAN_MIRROR} http://search.cpan.org/CPAN/ \n \ | 63 | ${CPAN_MIRROR} http://search.cpan.org/CPAN/ \n \ |
64 | " | 64 | " |
65 | |||
66 | # Use MIRRORS to provide git repo fallbacks using the https protocol, for cases | ||
67 | # where git native protocol fetches may fail due to local firewall rules, etc. | ||
68 | |||
69 | MIRRORS += "\ | ||
70 | git://anonscm.debian.org/.* git://anonscm.debian.org/git/PATH;protocol=https \n \ | ||
71 | git://git.gnome.org/.* git://git.gnome.org/browse/PATH;protocol=https \n \ | ||
72 | git://git.savannah.gnu.org/.* git://git.savannah.gnu.org/git/PATH;protocol=https \n \ | ||
73 | git://git.yoctoproject.org/.* git://git.yoctoproject.org/git/PATH;protocol=https \n \ | ||
74 | git://.*/.* git://HOST/PATH;protocol=https \n \ | ||
75 | " | ||