summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--documentation/ref-manual/ref-variables.rst14
1 files changed, 12 insertions, 2 deletions
diff --git a/documentation/ref-manual/ref-variables.rst b/documentation/ref-manual/ref-variables.rst
index c02364d08a..0603ba93c5 100644
--- a/documentation/ref-manual/ref-variables.rst
+++ b/documentation/ref-manual/ref-variables.rst
@@ -7096,8 +7096,18 @@ system and gives an overview of their function and contents.
7096 tree when using the Git fetcher is used. 7096 tree when using the Git fetcher is used.
7097 7097
7098 - ``name`` - Specifies a name to be used for association with 7098 - ``name`` - Specifies a name to be used for association with
7099 ``SRC_URI`` checksums when you have more than one file specified 7099 ``SRC_URI`` checksums or :term:`SRCREV` when you have more than one
7100 in ``SRC_URI``. 7100 file or git repository specified in ``SRC_URI``. For example:
7101 ::
7102
7103 SRC_URI = "git://example.com/foo.git;name=first \
7104 git://example.com/bar.git;name=second \
7105 http://example.com/file.tar.gz;name=third"
7106
7107 SRCREV_first = "f1d2d2f924e986ac86fdf7b36c94bcdf32beec15"
7108 SRCREV_second = "e242ed3bffccdf271b7fbaf34ed72d089537b42f"
7109 SRC_URI[third.sha256sum] = "13550350a8681c84c861aac2e5b440161c2b33a3e4f302ac680ca5b686de48de"
7110
7101 7111
7102 - ``downloadfilename`` - Specifies the filename used when storing 7112 - ``downloadfilename`` - Specifies the filename used when storing
7103 the downloaded file. 7113 the downloaded file.