summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/devtool-reference.rst
diff options
context:
space:
mode:
authorQuentin Schulz <foss@0leil.net>2021-01-16 12:16:03 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-20 00:53:53 +0000
commite6a0be545d73b1052a259547afd2aa63d4b58546 (patch)
tree065e669743e2e2eb2de44e5405fb20c0b44ce4e4 /documentation/ref-manual/devtool-reference.rst
parent658499cacb252f55124a6ac0bf57ed0b145544d8 (diff)
downloadpoky-e6a0be545d73b1052a259547afd2aa63d4b58546.tar.gz
docs: fix missing & and ; surrounding references from poky.yaml
poky.yaml references are only replaced in files if they are prefixed by & and suffixed by ;. Let's fix the missing surrounding characters. (From yocto-docs rev: 7ee4ba7a27acd87d8c728639d1b053d2e26c6e58) Signed-off-by: Quentin Schulz <foss@0leil.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual/devtool-reference.rst')
-rw-r--r--documentation/ref-manual/devtool-reference.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/ref-manual/devtool-reference.rst b/documentation/ref-manual/devtool-reference.rst
index cc5848fd4d..5075f0c224 100644
--- a/documentation/ref-manual/devtool-reference.rst
+++ b/documentation/ref-manual/devtool-reference.rst
@@ -204,20 +204,20 @@ specify these options when using the ``devtool add`` command:
204- To specify a source branch, use the ``--srcbranch`` option: 204- To specify a source branch, use the ``--srcbranch`` option:
205 :: 205 ::
206 206
207 $ devtool add --srcbranch DISTRO_NAME_NO_CAP jackson /home/user/sources/jackson 207 $ devtool add --srcbranch &DISTRO_NAME_NO_CAP; jackson /home/user/sources/jackson
208 208
209 In the previous example, you are checking out the DISTRO_NAME_NO_CAP 209 In the previous example, you are checking out the &DISTRO_NAME_NO_CAP;
210 branch. 210 branch.
211 211
212- To specify a specific tag or commit hash, use the ``--srcrev`` 212- To specify a specific tag or commit hash, use the ``--srcrev``
213 option: 213 option:
214 :: 214 ::
215 215
216 $ devtool add --srcrev DISTRO_REL_TAG jackson /home/user/sources/jackson 216 $ devtool add --srcrev &DISTRO_REL_TAG; jackson /home/user/sources/jackson
217 $ devtool add --srcrev some_commit_hash /home/user/sources/jackson 217 $ devtool add --srcrev some_commit_hash /home/user/sources/jackson
218 218
219 The previous examples check out the 219 The previous examples check out the
220 DISTRO_REL_TAG tag and the commit associated with the 220 &DISTRO_REL_TAG; tag and the commit associated with the
221 some_commit_hash hash. 221 some_commit_hash hash.
222 222
223.. note:: 223.. note::