diff options
author | Chris Morgan <chmorgan@gmail.com> | 2014-05-18 14:24:12 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-19 12:04:34 +0100 |
commit | 09edf20070036a3d83bb79e17f57261bea0d0f09 (patch) | |
tree | b82fbffc91d1e77ec02e7fc79a0553c29301f317 /bitbake/lib/bb/fetch2 | |
parent | 874d81a5ebb6395b0d65d0082471287e522d0c47 (diff) | |
download | poky-09edf20070036a3d83bb79e17f57261bea0d0f09.tar.gz |
bitbake: fetch2/gitsm: Documentation improvements for gitsm:// fetcher
(Bitbake rev: ef2bf63e56b87e19d1a9059dd2d81a9a1a537254)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-rw-r--r-- | bitbake/lib/bb/fetch2/gitsm.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/gitsm.py b/bitbake/lib/bb/fetch2/gitsm.py index 1a762153c4..c125cff54b 100644 --- a/bitbake/lib/bb/fetch2/gitsm.py +++ b/bitbake/lib/bb/fetch2/gitsm.py | |||
@@ -2,6 +2,16 @@ | |||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | 2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- |
3 | """ | 3 | """ |
4 | BitBake 'Fetch' git submodules implementation | 4 | BitBake 'Fetch' git submodules implementation |
5 | |||
6 | Inherits from and extends the Git fetcher to retrieve submodules of a git repository | ||
7 | after cloning. | ||
8 | |||
9 | SRC_URI = "gitsm://<see Git fetcher for syntax>" | ||
10 | |||
11 | See the Git fetcher, git://, for usage documentation. | ||
12 | |||
13 | NOTE: Switching a SRC_URI from "git://" to "gitsm://" requires a clean of your recipe. | ||
14 | |||
5 | """ | 15 | """ |
6 | 16 | ||
7 | # Copyright (C) 2013 Richard Purdie | 17 | # Copyright (C) 2013 Richard Purdie |