diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2022-03-25 15:35:35 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-26 09:27:43 +0000 |
commit | 336b89ecd886b0450fc05e88941772c807b2eb83 (patch) | |
tree | 8d7dfa699402e4b8cc0c279e78e6e7c755acdea2 /bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst | |
parent | 5cbdd2b4831fe069e5b441f0c6f427b2b9dc086b (diff) | |
download | poky-336b89ecd886b0450fc05e88941772c807b2eb83.tar.gz |
bitbake: doc: bitbake-user-manual: add branch parameter to git SRC_URI examples
This parameter is now required by the git fetcher module
(Bitbake rev: d61b349581c219e7f9d50f683177184fa473cb83)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst')
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst index 9ff4e16194..07885392d3 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst | |||
@@ -405,7 +405,7 @@ This fetcher supports the following parameters: | |||
405 | ``git@gitlab.freedesktop.org:mesa/mesa.git``, however the expected URL in | 405 | ``git@gitlab.freedesktop.org:mesa/mesa.git``, however the expected URL in |
406 | :term:`SRC_URI` is the following:: | 406 | :term:`SRC_URI` is the following:: |
407 | 407 | ||
408 | SRC_URI = "git://git@gitlab.freedesktop.org/mesa/mesa.git;protocol=ssh;..." | 408 | SRC_URI = "git://git@gitlab.freedesktop.org/mesa/mesa.git;branch=main;protocol=ssh;..." |
409 | 409 | ||
410 | Note the ``:`` character changed for a ``/`` before the path to the project. | 410 | Note the ``:`` character changed for a ``/`` before the path to the project. |
411 | 411 | ||
@@ -457,9 +457,9 @@ This fetcher supports the following parameters: | |||
457 | 457 | ||
458 | Here are some example URLs:: | 458 | Here are some example URLs:: |
459 | 459 | ||
460 | SRC_URI = "git://git.oe.handhelds.org/git/vip.git;tag=version-1" | 460 | SRC_URI = "git://github.com/fronteed/icheck.git;protocol=https;branch=${PV};tag=${PV}" |
461 | SRC_URI = "git://git.oe.handhelds.org/git/vip.git;protocol=http" | 461 | SRC_URI = "git://github.com/asciidoc/asciidoc-py;protocol=https;branch=main" |
462 | SRC_URI = "git://git@gitlab.freedesktop.org/mesa/mesa.git;protocol=ssh;..." | 462 | SRC_URI = "git://git@gitlab.freedesktop.org/mesa/mesa.git;branch=main;protocol=ssh;..." |
463 | 463 | ||
464 | .. note:: | 464 | .. note:: |
465 | 465 | ||