From 09761c95e7541a8ac954a75b0c70cd2f8362720e Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 21 Aug 2011 10:38:59 -0700 Subject: fetch2/git: Add rsync as a valid git protocol (Bitbake rev: 4cc4e318fd6907a4742f327177f321d140385c9e) Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/fetch2') diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index 7954f66ac5..25c2c510f6 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py @@ -88,7 +88,7 @@ class Git(FetchMethod): else: ud.proto = "git" - if not ud.proto in ('git', 'file', 'ssh', 'http', 'https'): + if not ud.proto in ('git', 'file', 'ssh', 'http', 'https', 'rsync'): raise bb.fetch2.ParameterError("Invalid protocol type", ud.url) ud.nocheckout = ud.parm.get("nocheckout","0") == "1" -- cgit v1.2.3-54-g00ecf