From 2bd4477be78973a8b01febe8abb8d28bb143da10 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Tue, 7 Jan 2014 13:58:33 -0200 Subject: bitbake: 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. (Bitbake rev: a61fc4db598e9d13c966712a6a0e4783e19448be) Signed-off-by: Otavio Salvador Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/__init__.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index c584f48ad2..9499a911b5 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/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()) -- cgit v1.2.3-54-g00ecf