diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2014-01-07 13:58:33 -0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-08 12:49:08 +0000 |
commit | 2bd4477be78973a8b01febe8abb8d28bb143da10 (patch) | |
tree | 60d85222e73acc25967d4c250af464b85714876c /bitbake/lib/bb | |
parent | e93a345fae7c21652547bec501fcb1f3b6c6427d (diff) | |
download | poky-2bd4477be78973a8b01febe8abb8d28bb143da10.tar.gz |
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 <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
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): | |||
1513 | from . import cvs | 1513 | from . import cvs |
1514 | from . import git | 1514 | from . import git |
1515 | from . import gitsm | 1515 | from . import gitsm |
1516 | from . import gitannex | ||
1516 | from . import local | 1517 | from . import local |
1517 | from . import svn | 1518 | from . import svn |
1518 | from . import wget | 1519 | from . import wget |
@@ -1530,6 +1531,7 @@ methods.append(wget.Wget()) | |||
1530 | methods.append(svn.Svn()) | 1531 | methods.append(svn.Svn()) |
1531 | methods.append(git.Git()) | 1532 | methods.append(git.Git()) |
1532 | methods.append(gitsm.GitSM()) | 1533 | methods.append(gitsm.GitSM()) |
1534 | methods.append(gitannex.GitANNEX()) | ||
1533 | methods.append(cvs.Cvs()) | 1535 | methods.append(cvs.Cvs()) |
1534 | methods.append(svk.Svk()) | 1536 | methods.append(svk.Svk()) |
1535 | methods.append(ssh.SSH()) | 1537 | methods.append(ssh.SSH()) |