summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Schulz <foss+yocto@0leil.net>2023-06-22 18:48:45 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-06-24 12:22:27 +0100
commit2aa3af4de3a0d0a9c98c0e9c853ce2cdd03e9c8c (patch)
treeff1a2c62546ac59f6e48016e0d8a1cdc3077710e
parentbd8d5e20f4831e9e0ec6150ef57affd6acba3c48 (diff)
downloadpoky-2aa3af4de3a0d0a9c98c0e9c853ce2cdd03e9c8c.tar.gz
bitbake: docs: bitbake-user-manual: bitbake-user-manual-hello: add links and highlights for variables
Some variables are described in the glossary so add a term role to the references. For the others, highlight them by surrounding them with two backticks. Cc: Quentin Schulz <foss+yocto@0leil.net> (Bitbake rev: 7290a9daf1707ab5b2288f34353f499f5ce57d6a) Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst
index c8251d2a04..654196ca24 100644
--- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst
+++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst
@@ -209,12 +209,12 @@ Following is the complete "Hello World" example.
209 209
210 .. note:: 210 .. note::
211 211
212 Without a value for PN , the variables STAMP , T , and B , prevent more 212 Without a value for :term:`PN`, the variables :term:`STAMP`, :term:`T`, and :term:`B`, prevent more
213 than one recipe from working. You can fix this by either setting PN to 213 than one recipe from working. You can fix this by either setting :term:`PN` to
214 have a value similar to what OpenEmbedded and BitBake use in the default 214 have a value similar to what OpenEmbedded and BitBake use in the default
215 bitbake.conf file (see previous example). Or, by manually updating each 215 ``bitbake.conf`` file (see previous example). Or, by manually updating each
216 recipe to set PN . You will also need to include PN as part of the STAMP 216 recipe to set :term:`PN`. You will also need to include :term:`PN` as part of the :term:`STAMP`,
217 , T , and B variable definitions in the local.conf file. 217 :term:`T`, and :term:`B` variable definitions in the ``local.conf`` file.
218 218
219 The ``TMPDIR`` variable establishes a directory that BitBake uses 219 The ``TMPDIR`` variable establishes a directory that BitBake uses
220 for build output and intermediate files other than the cached 220 for build output and intermediate files other than the cached
@@ -319,9 +319,9 @@ Following is the complete "Hello World" example.
319 319
320 .. note:: 320 .. note::
321 321
322 We are setting both LAYERSERIES_CORENAMES and LAYERSERIES_COMPAT in this particular case, because we 322 We are setting both ``LAYERSERIES_CORENAMES`` and :term:`LAYERSERIES_COMPAT` in this particular case, because we
323 are using bitbake without OpenEmbedded. 323 are using bitbake without OpenEmbedded.
324 You should usually just use LAYERSERIES_COMPAT to specify the OE-Core versions for which your layer 324 You should usually just use :term:`LAYERSERIES_COMPAT` to specify the OE-Core versions for which your layer
325 is compatible, and add the meta-openembedded layer to your project. 325 is compatible, and add the meta-openembedded layer to your project.
326 326
327 You need to create the recipe file next. Inside your layer at the 327 You need to create the recipe file next. Inside your layer at the