summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/fetch2/git.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index b5d6f99de2..0f215de644 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -152,6 +152,10 @@ class Git(FetchMethod):
152 ud.proto = 'file' 152 ud.proto = 'file'
153 else: 153 else:
154 ud.proto = "git" 154 ud.proto = "git"
155 if ud.host == "github.com" and ud.proto == "git":
156 # github stopped supporting git protocol
157 # https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git
158 ud.proto = "https"
155 159
156 if not ud.proto in ('git', 'file', 'ssh', 'http', 'https', 'rsync'): 160 if not ud.proto in ('git', 'file', 'ssh', 'http', 'https', 'rsync'):
157 raise bb.fetch2.ParameterError("Invalid protocol type", ud.url) 161 raise bb.fetch2.ParameterError("Invalid protocol type", ud.url)