summaryrefslogtreecommitdiffstats
path: root/documentation/README
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2021-07-27 16:04:04 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-30 22:49:15 +0100
commit1452ac11eed0b9a70049901c98587b95412cf0b7 (patch)
treef6013e61f68edef6b781e4da0dc6283b79b4f5fa /documentation/README
parent0d527052cbc73d177d23efcda1e53f28ec9aedf5 (diff)
downloadpoky-1452ac11eed0b9a70049901c98587b95412cf0b7.tar.gz
documentation/README: improve BitBake manual referencing guidelines
Removing the ":ref:`-D <bitbake:..." syntax as it's not necessary Adding more and simpler ways of making references to the BitBake manual. (From yocto-docs rev: 7ad087a81e5dca7088c8088cd0cdcf31606baa6e) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Reviewed-by: Quentin Schulz <foss@0leil.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/README')
-rw-r--r--documentation/README15
1 files changed, 12 insertions, 3 deletions
diff --git a/documentation/README b/documentation/README
index f9e803a28b..fad19683c1 100644
--- a/documentation/README
+++ b/documentation/README
@@ -328,10 +328,19 @@ The sphinx.ext.intersphinx extension is enabled by default
328so that we can cross reference content from other Sphinx based 328so that we can cross reference content from other Sphinx based
329documentation projects, such as the BitBake manual. 329documentation projects, such as the BitBake manual.
330 330
331References to the bitbake manual can be done like this: 331References to the BitBake manual can be done:
332 - With a specific description instead of the section name:
333 :ref:`Azure Storage fetcher (az://) <bitbake:bitbake-user-manual/bitbake-user-manual-fetching:fetchers>`
334 - With the section name:
335 ":ref:`bitbake:bitbake-user-manual/bitbake-user-manual-intro:usage and syntax` option
336 - Linking to the entire BitBake manual:
337 :doc:`BitBake User Manual <bitbake:index>`
338
339Note that a reference to a variable (:term:`VARIABLE`) automatically points to
340the BitBake manual if the variable is not described in the Reference Manual's Variable Glossary.
341However, if you need to bypass this, you can explicitely refer to a description in the
342BitBake manual as follows:
332 343
333 See the ":ref:`-D <bitbake:bitbake-user-manual/bitbake-user-manual-intro:usage and syntax>`" option
334or
335 :term:`bitbake:BB_NUMBER_PARSE_THREADS` 344 :term:`bitbake:BB_NUMBER_PARSE_THREADS`
336 345
337Submitting documentation changes 346Submitting documentation changes