From a61fc4db598e9d13c966712a6a0e4783e19448be Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Tue, 7 Jan 2014 13:58:33 -0200 Subject: [PATCH] bitbake: gitannex.py: Add Git Annex support This add a Git Annex backend which reuses the Git fetcher code; it allows managing files with git, without checking the file contents into git, being useful when dealing with files larger than git can currently easily handle, whether due to limitations in memory, time, or disk space. Signed-off-by: Otavio Salvador Signed-off-by: Richard Purdie --- lib/bb/fetch2/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py index c584f48ad24..9499a911b52 100644 --- a/lib/bb/fetch2/__init__.py +++ b/lib/bb/fetch2/__init__.py @@ -1513,6 +1513,7 @@ class Fetch(object): from . import cvs from . import git from . import gitsm +from . import gitannex from . import local from . import svn from . import wget @@ -1530,6 +1531,7 @@ methods.append(wget.Wget()) methods.append(svn.Svn()) methods.append(git.Git()) methods.append(gitsm.GitSM()) +methods.append(gitannex.GitANNEX()) methods.append(cvs.Cvs()) methods.append(svk.Svk()) methods.append(ssh.SSH()) -- 2.47.3