summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual
diff options
context:
space:
mode:
authorQuentin Schulz <foss@0leil.net>2021-06-19 09:07:35 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-16 21:59:31 +0100
commit5a6fb291ad16ce4110e65adf2d29e8ccfe6fa25a (patch)
treedf43222dc7a0def1bbc6246ca2a33953f85e584f /documentation/ref-manual
parentbe3e14dd43220db034a63b7a9f5516feb6a00110 (diff)
downloadpoky-5a6fb291ad16ce4110e65adf2d29e8ccfe6fa25a.tar.gz
docs: replace remaining ``FOO`` by :term:`FOO`
A few occurences appeared between the time the original patch was sent and it was applied, this fixes it. Also, the original patch didn't take into account lowercase terms, this is now fixed, see module_autoload for example. Finally, as is often the case with regexp, there was a typo in it that didn't make it match as much as it should have. The script that is used to do the replacement of ``FOO`` by :term:`FOO` is the following Python code: import re from pathlib import Path from runpy import run_module import contextlib import io import sys re_term = re.compile(r'variables.html#term-([a-zA-Z_0-9]*)') terms = [] new_terms = set() with contextlib.redirect_stdout(io.StringIO()) as f: run_module('sphinx.ext.intersphinx', run_name='__main__') objects = f.getvalue() match = re_term.search(objects) while match: if match.group(1): terms.append(match.group(1)) match = re_term.search(objects, match.end()) for rst in Path('.').rglob('*.rst'): with open(rst, 'r') as f: content = "".join(f.readlines()) for term in terms: content = re.sub(r'``({})``(?!.*\s+[~=-]{{{:d},}})'.format(term, len(term)), r':term:`\1`', content) with open(rst, 'w') as f: f.write(content) This script takes one argument as input: an objects.inv. Bitbake's can be gotten from https://docs.yoctoproject.org/bitbake/objects.inv. The objetcs.inv from the current git repo can be gotten from documentation/_build/html/objetcs.inv after running `make html`. Note that this excludes from replacement terms that appear in section titles as it requires refs to be changed too. This can be automated too if need be but right now it looks a bit confusing to have an anchor link (for sections) also have a term/reference link in it. I am not sure this is desired today. This is the result of two runs of the aforementioned script, once with Bitbake objects.inv and once with this repo's. Fixes: ba49d9babfcb "docs: replace ``FOO`` by :term:`FOO` where possible" (From yocto-docs rev: 1e1b0c4dd241b6657035172b1f7b5f341afa8b25) Signed-off-by: Quentin Schulz <foss@0leil.net> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual')
-rw-r--r--documentation/ref-manual/classes.rst10
-rw-r--r--documentation/ref-manual/faq.rst2
-rw-r--r--documentation/ref-manual/kickstart.rst2
-rw-r--r--documentation/ref-manual/qa-checks.rst2
-rw-r--r--documentation/ref-manual/variables.rst60
5 files changed, 38 insertions, 38 deletions
diff --git a/documentation/ref-manual/classes.rst b/documentation/ref-manual/classes.rst
index 9b93807b6d..49905f2725 100644
--- a/documentation/ref-manual/classes.rst
+++ b/documentation/ref-manual/classes.rst
@@ -116,7 +116,7 @@ It's useful to have some idea of how the tasks defined by the
116 116
117- :ref:`ref-tasks-compile` - Runs ``make`` with 117- :ref:`ref-tasks-compile` - Runs ``make`` with
118 arguments that specify the compiler and linker. You can pass 118 arguments that specify the compiler and linker. You can pass
119 additional arguments through the ``EXTRA_OEMAKE`` variable. 119 additional arguments through the :term:`EXTRA_OEMAKE` variable.
120 120
121- :ref:`ref-tasks-install` - Runs ``make install`` and 121- :ref:`ref-tasks-install` - Runs ``make install`` and
122 passes in ``${``\ :term:`D`\ ``}`` as ``DESTDIR``. 122 passes in ``${``\ :term:`D`\ ``}`` as ``DESTDIR``.
@@ -981,7 +981,7 @@ are meant to detect real or potential problems in the packaged
981output. So exercise caution when disabling these checks. 981output. So exercise caution when disabling these checks.
982 982
983Here are the tests you can list with the :term:`WARN_QA` and 983Here are the tests you can list with the :term:`WARN_QA` and
984``ERROR_QA`` variables: 984:term:`ERROR_QA` variables:
985 985
986- ``already-stripped:`` Checks that produced binaries have not 986- ``already-stripped:`` Checks that produced binaries have not
987 already been stripped prior to the build system extracting debug 987 already been stripped prior to the build system extracting debug
@@ -1016,7 +1016,7 @@ Here are the tests you can list with the :term:`WARN_QA` and
1016 adds a dependency on the ``initscripts-functions`` package to 1016 adds a dependency on the ``initscripts-functions`` package to
1017 packages that install an initscript that refers to 1017 packages that install an initscript that refers to
1018 ``/etc/init.d/functions``. The recipe should really have an explicit 1018 ``/etc/init.d/functions``. The recipe should really have an explicit
1019 ``RDEPENDS`` for the package in question on ``initscripts-functions`` 1019 :term:`RDEPENDS` for the package in question on ``initscripts-functions``
1020 so that the OpenEmbedded build system is able to ensure that the 1020 so that the OpenEmbedded build system is able to ensure that the
1021 ``initscripts`` recipe is actually built and thus the 1021 ``initscripts`` recipe is actually built and thus the
1022 ``initscripts-functions`` package is made available. 1022 ``initscripts-functions`` package is made available.
@@ -1186,7 +1186,7 @@ Here are the tests you can list with the :term:`WARN_QA` and
1186 turn into ``FILES = "xyz"``. 1186 turn into ``FILES = "xyz"``.
1187 1187
1188- ``rpaths:`` Checks for rpaths in the binaries that contain build 1188- ``rpaths:`` Checks for rpaths in the binaries that contain build
1189 system paths such as ``TMPDIR``. If this test fails, bad ``-rpath`` 1189 system paths such as :term:`TMPDIR`. If this test fails, bad ``-rpath``
1190 options are being passed to the linker commands and your binaries 1190 options are being passed to the linker commands and your binaries
1191 have potential security issues. 1191 have potential security issues.
1192 1192
@@ -1259,7 +1259,7 @@ themselves.
1259 1259
1260The ``kernel`` class handles building Linux kernels. The class contains 1260The ``kernel`` class handles building Linux kernels. The class contains
1261code to build all kernel trees. All needed headers are staged into the 1261code to build all kernel trees. All needed headers are staged into the
1262``STAGING_KERNEL_DIR`` directory to allow out-of-tree module builds 1262:term:`STAGING_KERNEL_DIR` directory to allow out-of-tree module builds
1263using the :ref:`module <ref-classes-module>` class. 1263using the :ref:`module <ref-classes-module>` class.
1264 1264
1265This means that each built kernel module is packaged separately and 1265This means that each built kernel module is packaged separately and
diff --git a/documentation/ref-manual/faq.rst b/documentation/ref-manual/faq.rst
index 640ef77d03..c7322e7623 100644
--- a/documentation/ref-manual/faq.rst
+++ b/documentation/ref-manual/faq.rst
@@ -292,7 +292,7 @@ download directory. If that location fails, Poky tries
292:term:`MIRRORS` in that order. 292:term:`MIRRORS` in that order.
293 293
294Assuming your distribution is "poky", the OpenEmbedded build system uses 294Assuming your distribution is "poky", the OpenEmbedded build system uses
295the Yocto Project source ``PREMIRRORS`` by default for SCM-based 295the Yocto Project source :term:`PREMIRRORS` by default for SCM-based
296sources, upstreams for normal tarballs, and then falls back to a number 296sources, upstreams for normal tarballs, and then falls back to a number
297of other mirrors including the Yocto Project source mirror if those 297of other mirrors including the Yocto Project source mirror if those
298fail. 298fail.
diff --git a/documentation/ref-manual/kickstart.rst b/documentation/ref-manual/kickstart.rst
index a7443f9ea3..fc723ccbe2 100644
--- a/documentation/ref-manual/kickstart.rst
+++ b/documentation/ref-manual/kickstart.rst
@@ -208,7 +208,7 @@ supports the following options:
208 bootloader times out and boots the default option. 208 bootloader times out and boots the default option.
209 209
210- ``--append``: Specifies kernel parameters. These parameters will be 210- ``--append``: Specifies kernel parameters. These parameters will be
211 added to the syslinux ``APPEND`` or ``grub`` kernel command line. 211 added to the syslinux :term:`APPEND` or ``grub`` kernel command line.
212 212
213- ``--configfile``: Specifies a user-defined configuration file for 213- ``--configfile``: Specifies a user-defined configuration file for
214 the bootloader. You can provide a full pathname for the file or a 214 the bootloader. You can provide a full pathname for the file or a
diff --git a/documentation/ref-manual/qa-checks.rst b/documentation/ref-manual/qa-checks.rst
index a105acc2c8..0ef203c70f 100644
--- a/documentation/ref-manual/qa-checks.rst
+++ b/documentation/ref-manual/qa-checks.rst
@@ -604,7 +604,7 @@ Errors and Warnings
604 so using ${:term:`BPN`} rather than ${:term:`PN`} as the latter will change 604 so using ${:term:`BPN`} rather than ${:term:`PN`} as the latter will change
605 for different variants of the same recipe e.g. when :term:`BBCLASSEXTEND` 605 for different variants of the same recipe e.g. when :term:`BBCLASSEXTEND`
606 or multilib are being used. This check will fail if a reference to ``${PN}`` 606 or multilib are being used. This check will fail if a reference to ``${PN}``
607 is found within the ``SRC_URI`` value - change it to ``${BPN}`` instead. 607 is found within the :term:`SRC_URI` value - change it to ``${BPN}`` instead.
608 608
609 609
610.. _qa-check-unhandled-features-check: 610.. _qa-check-unhandled-features-check:
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index 00d45a79f0..354721d1a8 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -280,7 +280,7 @@ system and gives an overview of their function and contents.
280 S = "${WORKDIR}/${BP}" 280 S = "${WORKDIR}/${BP}"
281 281
282 You can separate the (:term:`S`) directory and the directory pointed to 282 You can separate the (:term:`S`) directory and the directory pointed to
283 by the ``B`` variable. Most Autotools-based recipes support 283 by the :term:`B` variable. Most Autotools-based recipes support
284 separating these directories. The build system defaults to using 284 separating these directories. The build system defaults to using
285 separate directories for ``gcc`` and some kernel recipes. 285 separate directories for ``gcc`` and some kernel recipes.
286 286
@@ -553,7 +553,7 @@ system and gives an overview of their function and contents.
553 BB_SERVER_TIMEOUT = "20" 553 BB_SERVER_TIMEOUT = "20"
554 554
555 If you want the server to never be unloaded, 555 If you want the server to never be unloaded,
556 set ``BB_SERVER_TIMEOUT`` to "-1". 556 set :term:`BB_SERVER_TIMEOUT` to "-1".
557 557
558 :term:`BBCLASSEXTEND` 558 :term:`BBCLASSEXTEND`
559 Allows you to extend a recipe so that it builds variants of the 559 Allows you to extend a recipe so that it builds variants of the
@@ -577,7 +577,7 @@ system and gives an overview of their function and contents.
577 variants by rewriting variable values and applying overrides such 577 variants by rewriting variable values and applying overrides such
578 as ``_class-native``. For example, to generate a native version of 578 as ``_class-native``. For example, to generate a native version of
579 a recipe, a :term:`DEPENDS` on "foo" is rewritten 579 a recipe, a :term:`DEPENDS` on "foo" is rewritten
580 to a ``DEPENDS`` on "foo-native". 580 to a :term:`DEPENDS` on "foo-native".
581 581
582 Even when using :term:`BBCLASSEXTEND`, the recipe is only parsed once. 582 Even when using :term:`BBCLASSEXTEND`, the recipe is only parsed once.
583 Parsing once adds some limitations. For example, it is not 583 Parsing once adds some limitations. For example, it is not
@@ -892,13 +892,13 @@ system and gives an overview of their function and contents.
892 the :term:`BUILD_CFLAGS` and 892 the :term:`BUILD_CFLAGS` and
893 :term:`BUILDSDK_CFLAGS` default values. 893 :term:`BUILDSDK_CFLAGS` default values.
894 894
895 The default value of the ``BUILD_OPTIMIZATION`` variable is "-O2 895 The default value of the :term:`BUILD_OPTIMIZATION` variable is "-O2
896 -pipe". 896 -pipe".
897 897
898 :term:`BUILD_OS` 898 :term:`BUILD_OS`
899 Specifies the operating system in use on the build host (e.g. 899 Specifies the operating system in use on the build host (e.g.
900 "linux"). The OpenEmbedded build system sets the value of 900 "linux"). The OpenEmbedded build system sets the value of
901 ``BUILD_OS`` from the OS reported by the ``uname`` command - the 901 :term:`BUILD_OS` from the OS reported by the ``uname`` command - the
902 first word, converted to lower-case characters. 902 first word, converted to lower-case characters.
903 903
904 :term:`BUILD_PREFIX` 904 :term:`BUILD_PREFIX`
@@ -1114,7 +1114,7 @@ system and gives an overview of their function and contents.
1114 1114
1115 .. note:: 1115 .. note::
1116 1116
1117 ``CLASSOVERRIDE`` gets its default "class-target" value from the 1117 :term:`CLASSOVERRIDE` gets its default "class-target" value from the
1118 ``bitbake.conf`` file. 1118 ``bitbake.conf`` file.
1119 1119
1120 As an example, the following override allows you to install extra 1120 As an example, the following override allows you to install extra
@@ -1205,7 +1205,7 @@ system and gives an overview of their function and contents.
1205 1205
1206 :term:`COMPONENTS_DIR` 1206 :term:`COMPONENTS_DIR`
1207 Stores sysroot components for each recipe. The OpenEmbedded build 1207 Stores sysroot components for each recipe. The OpenEmbedded build
1208 system uses ``COMPONENTS_DIR`` when constructing recipe-specific 1208 system uses :term:`COMPONENTS_DIR` when constructing recipe-specific
1209 sysroots for other recipes. 1209 sysroots for other recipes.
1210 1210
1211 The default is 1211 The default is
@@ -1611,7 +1611,7 @@ system and gives an overview of their function and contents.
1611 ":ref:`overview-manual/concepts:automatically added runtime dependencies`" 1611 ":ref:`overview-manual/concepts:automatically added runtime dependencies`"
1612 section in the Yocto Project Overview and Concepts Manual, 1612 section in the Yocto Project Overview and Concepts Manual,
1613 runtime dependencies will often be added automatically, meaning 1613 runtime dependencies will often be added automatically, meaning
1614 ``DEPENDS`` alone is sufficient for most recipes. 1614 :term:`DEPENDS` alone is sufficient for most recipes.
1615 1615
1616 - Counterintuitively, :term:`DEPENDS` is often necessary even for 1616 - Counterintuitively, :term:`DEPENDS` is often necessary even for
1617 recipes that install precompiled components. For example, if 1617 recipes that install precompiled components. For example, if
@@ -1652,7 +1652,7 @@ system and gives an overview of their function and contents.
1652 "package_deb". 1652 "package_deb".
1653 1653
1654 The BitBake configuration file initially defines the 1654 The BitBake configuration file initially defines the
1655 ``DEPLOY_DIR_DEB`` variable as a sub-folder of 1655 :term:`DEPLOY_DIR_DEB` variable as a sub-folder of
1656 :term:`DEPLOY_DIR`:: 1656 :term:`DEPLOY_DIR`::
1657 1657
1658 DEPLOY_DIR_DEB = "${DEPLOY_DIR}/deb" 1658 DEPLOY_DIR_DEB = "${DEPLOY_DIR}/deb"
@@ -2568,7 +2568,7 @@ system and gives an overview of their function and contents.
2568 :term:`FONT_EXTRA_RDEPENDS` 2568 :term:`FONT_EXTRA_RDEPENDS`
2569 When inheriting the :ref:`fontcache <ref-classes-fontcache>` class, 2569 When inheriting the :ref:`fontcache <ref-classes-fontcache>` class,
2570 this variable specifies the runtime dependencies for font packages. 2570 this variable specifies the runtime dependencies for font packages.
2571 By default, the ``FONT_EXTRA_RDEPENDS`` is set to "fontconfig-utils". 2571 By default, the :term:`FONT_EXTRA_RDEPENDS` is set to "fontconfig-utils".
2572 2572
2573 :term:`FONT_PACKAGES` 2573 :term:`FONT_PACKAGES`
2574 When inheriting the :ref:`fontcache <ref-classes-fontcache>` class, 2574 When inheriting the :ref:`fontcache <ref-classes-fontcache>` class,
@@ -3005,7 +3005,7 @@ system and gives an overview of their function and contents.
3005 3005
3006 - If an image recipe uses the "inherit image" line and you are 3006 - If an image recipe uses the "inherit image" line and you are
3007 setting :term:`IMAGE_FSTYPES` inside the recipe, you must set 3007 setting :term:`IMAGE_FSTYPES` inside the recipe, you must set
3008 ``IMAGE_FSTYPES`` prior to using the "inherit image" line. 3008 :term:`IMAGE_FSTYPES` prior to using the "inherit image" line.
3009 3009
3010 - Due to the way the OpenEmbedded build system processes this 3010 - Due to the way the OpenEmbedded build system processes this
3011 variable, you cannot update its contents by using ``_append`` 3011 variable, you cannot update its contents by using ``_append``
@@ -3334,13 +3334,13 @@ system and gives an overview of their function and contents.
3334 :term:`IMGDEPLOYDIR` 3334 :term:`IMGDEPLOYDIR`
3335 When inheriting the :ref:`image <ref-classes-image>` class directly or 3335 When inheriting the :ref:`image <ref-classes-image>` class directly or
3336 through the :ref:`core-image <ref-classes-core-image>` class, the 3336 through the :ref:`core-image <ref-classes-core-image>` class, the
3337 ``IMGDEPLOYDIR`` points to a temporary work area for deployed files 3337 :term:`IMGDEPLOYDIR` points to a temporary work area for deployed files
3338 that is set in the ``image`` class as follows:: 3338 that is set in the ``image`` class as follows::
3339 3339
3340 IMGDEPLOYDIR = "${WORKDIR}/deploy-${PN}-image-complete" 3340 IMGDEPLOYDIR = "${WORKDIR}/deploy-${PN}-image-complete"
3341 3341
3342 Recipes inheriting the ``image`` class should copy files to be 3342 Recipes inheriting the ``image`` class should copy files to be
3343 deployed into ``IMGDEPLOYDIR``, and the class will take care of 3343 deployed into :term:`IMGDEPLOYDIR`, and the class will take care of
3344 copying them into :term:`DEPLOY_DIR_IMAGE` afterwards. 3344 copying them into :term:`DEPLOY_DIR_IMAGE` afterwards.
3345 3345
3346 :term:`INC_PR` 3346 :term:`INC_PR`
@@ -3698,7 +3698,7 @@ system and gives an overview of their function and contents.
3698 - qemu 3698 - qemu
3699 - mips 3699 - mips
3700 3700
3701 You define the ``KARCH`` variable in the :ref:`kernel-dev/advanced:bsp descriptions`. 3701 You define the :term:`KARCH` variable in the :ref:`kernel-dev/advanced:bsp descriptions`.
3702 3702
3703 :term:`KBRANCH` 3703 :term:`KBRANCH`
3704 A regular expression used by the build process to explicitly identify 3704 A regular expression used by the build process to explicitly identify
@@ -4653,7 +4653,7 @@ system and gives an overview of their function and contents.
4653 4653
4654 :term:`module_autoload` 4654 :term:`module_autoload`
4655 This variable has been replaced by the :term:`KERNEL_MODULE_AUTOLOAD` 4655 This variable has been replaced by the :term:`KERNEL_MODULE_AUTOLOAD`
4656 variable. You should replace all occurrences of ``module_autoload`` 4656 variable. You should replace all occurrences of :term:`module_autoload`
4657 with additions to :term:`KERNEL_MODULE_AUTOLOAD`, for example:: 4657 with additions to :term:`KERNEL_MODULE_AUTOLOAD`, for example::
4658 4658
4659 module_autoload_rfcomm = "rfcomm" 4659 module_autoload_rfcomm = "rfcomm"
@@ -4684,9 +4684,9 @@ system and gives an overview of their function and contents.
4684 You must use the kernel module name override. 4684 You must use the kernel module name override.
4685 4685
4686 Run ``man modprobe.d`` in the shell to find out more information on 4686 Run ``man modprobe.d`` in the shell to find out more information on
4687 the exact syntax you want to provide with ``module_conf``. 4687 the exact syntax you want to provide with :term:`module_conf`.
4688 4688
4689 Including ``module_conf`` causes the OpenEmbedded build system to 4689 Including :term:`module_conf` causes the OpenEmbedded build system to
4690 populate the ``/etc/modprobe.d/modname.conf`` file with 4690 populate the ``/etc/modprobe.d/modname.conf`` file with
4691 ``modprobe.d`` syntax lines. Here is an example that adds the options 4691 ``modprobe.d`` syntax lines. Here is an example that adds the options
4692 ``arg1`` and ``arg2`` to a module named ``mymodule``:: 4692 ``arg1`` and ``arg2`` to a module named ``mymodule``::
@@ -4876,7 +4876,7 @@ system and gives an overview of their function and contents.
4876 information, see the ":ref:`dev-manual/common-tasks:using a development shell`" section in 4876 information, see the ":ref:`dev-manual/common-tasks:using a development shell`" section in
4877 the Yocto Project Development Tasks Manual. 4877 the Yocto Project Development Tasks Manual.
4878 4878
4879 You can use the following values for the ``OE_TERMINAL`` variable: 4879 You can use the following values for the :term:`OE_TERMINAL` variable:
4880 4880
4881 - auto 4881 - auto
4882 - gnome 4882 - gnome
@@ -5260,7 +5260,7 @@ system and gives an overview of their function and contents.
5260 PACKAGECONFIG[f2] = "\ 5260 PACKAGECONFIG[f2] = "\
5261 ... and so on and so on ... 5261 ... and so on and so on ...
5262 5262
5263 The ``PACKAGECONFIG`` variable itself specifies a space-separated 5263 The :term:`PACKAGECONFIG` variable itself specifies a space-separated
5264 list of the features to enable. Following the features, you can 5264 list of the features to enable. Following the features, you can
5265 determine the behavior of each feature by providing up to six 5265 determine the behavior of each feature by providing up to six
5266 order-dependent arguments, which are separated by commas. You can 5266 order-dependent arguments, which are separated by commas. You can
@@ -5600,7 +5600,7 @@ system and gives an overview of their function and contents.
5600 5600
5601 If applicable, the :term:`PN` variable also contains any special suffix 5601 If applicable, the :term:`PN` variable also contains any special suffix
5602 or prefix. For example, using ``bash`` to build packages for the 5602 or prefix. For example, using ``bash`` to build packages for the
5603 native machine, ``PN`` is ``bash-native``. Using ``bash`` to build 5603 native machine, :term:`PN` is ``bash-native``. Using ``bash`` to build
5604 packages for the target and for Multilib, :term:`PN` would be ``bash`` 5604 packages for the target and for Multilib, :term:`PN` would be ``bash``
5605 and ``lib64-bash``, respectively. 5605 and ``lib64-bash``, respectively.
5606 5606
@@ -5670,7 +5670,7 @@ system and gives an overview of their function and contents.
5670 :term:`PR` does not need to be increased for changes that do not change the 5670 :term:`PR` does not need to be increased for changes that do not change the
5671 package contents or metadata. 5671 package contents or metadata.
5672 5672
5673 Because manually managing ``PR`` can be cumbersome and error-prone, 5673 Because manually managing :term:`PR` can be cumbersome and error-prone,
5674 an automated solution exists. See the 5674 an automated solution exists. See the
5675 ":ref:`dev-manual/common-tasks:working with a pr service`" section 5675 ":ref:`dev-manual/common-tasks:working with a pr service`" section
5676 in the Yocto Project Development Tasks Manual for more information. 5676 in the Yocto Project Development Tasks Manual for more information.
@@ -6042,7 +6042,7 @@ system and gives an overview of their function and contents.
6042 6042
6043 In the example, 6043 In the example,
6044 the development package depends on the ``perl`` package. Thus, the 6044 the development package depends on the ``perl`` package. Thus, the
6045 ``RDEPENDS`` variable has the ``${PN}-dev`` package name as part of 6045 :term:`RDEPENDS` variable has the ``${PN}-dev`` package name as part of
6046 the variable. 6046 the variable.
6047 6047
6048 .. note:: 6048 .. note::
@@ -7079,7 +7079,7 @@ system and gives an overview of their function and contents.
7079 7079
7080 :term:`SRC_URI_OVERRIDES_PACKAGE_ARCH` 7080 :term:`SRC_URI_OVERRIDES_PACKAGE_ARCH`
7081 By default, the OpenEmbedded build system automatically detects 7081 By default, the OpenEmbedded build system automatically detects
7082 whether ``SRC_URI`` contains files that are machine-specific. If so, 7082 whether :term:`SRC_URI` contains files that are machine-specific. If so,
7083 the build system automatically changes :term:`PACKAGE_ARCH`. Setting this 7083 the build system automatically changes :term:`PACKAGE_ARCH`. Setting this
7084 variable to "0" disables this behavior. 7084 variable to "0" disables this behavior.
7085 7085
@@ -7292,7 +7292,7 @@ system and gives an overview of their function and contents.
7292 7292
7293 ``-native`` recipes are not installed into host paths like such 7293 ``-native`` recipes are not installed into host paths like such
7294 as ``/usr``. Rather, these recipes are installed into 7294 as ``/usr``. Rather, these recipes are installed into
7295 ``STAGING_DIR_NATIVE``. When compiling ``-native`` recipes, 7295 :term:`STAGING_DIR_NATIVE`. When compiling ``-native`` recipes,
7296 standard build environment variables such as 7296 standard build environment variables such as
7297 :term:`CPPFLAGS` and 7297 :term:`CPPFLAGS` and
7298 :term:`CFLAGS` are set up so that both host paths 7298 :term:`CFLAGS` are set up so that both host paths
@@ -7726,13 +7726,13 @@ system and gives an overview of their function and contents.
7726 Specifies the prefix used for the toolchain binary target tools. 7726 Specifies the prefix used for the toolchain binary target tools.
7727 7727
7728 Depending on the type of recipe and the build target, 7728 Depending on the type of recipe and the build target,
7729 ``TARGET_PREFIX`` is set as follows: 7729 :term:`TARGET_PREFIX` is set as follows:
7730 7730
7731 - For recipes building for the target machine, the value is 7731 - For recipes building for the target machine, the value is
7732 "${:term:`TARGET_SYS`}-". 7732 "${:term:`TARGET_SYS`}-".
7733 7733
7734 - For native recipes, the build system sets the variable to the 7734 - For native recipes, the build system sets the variable to the
7735 value of ``BUILD_PREFIX``. 7735 value of :term:`BUILD_PREFIX`.
7736 7736
7737 - For native SDK recipes (``nativesdk``), the build system sets the 7737 - For native SDK recipes (``nativesdk``), the build system sets the
7738 variable to the value of :term:`SDK_PREFIX`. 7738 variable to the value of :term:`SDK_PREFIX`.
@@ -7778,7 +7778,7 @@ system and gives an overview of their function and contents.
7778 separate to avoid potential conflicts. 7778 separate to avoid potential conflicts.
7779 7779
7780 In the ``defaultsetup.conf`` file, the default value of 7780 In the ``defaultsetup.conf`` file, the default value of
7781 ``TCLIBCAPPEND`` is "-${TCLIBC}". However, distros such as poky, 7781 :term:`TCLIBCAPPEND` is "-${TCLIBC}". However, distros such as poky,
7782 which normally only support one ``libc`` variant, set 7782 which normally only support one ``libc`` variant, set
7783 :term:`TCLIBCAPPEND` to "" in their distro configuration file resulting 7783 :term:`TCLIBCAPPEND` to "" in their distro configuration file resulting
7784 in no suffix being applied. 7784 in no suffix being applied.
@@ -7960,7 +7960,7 @@ system and gives an overview of their function and contents.
7960 ``BaseTarget`` class, which is an abstract class that cannot be used 7960 ``BaseTarget`` class, which is an abstract class that cannot be used
7961 as a value of :term:`TEST_TARGET`. 7961 as a value of :term:`TEST_TARGET`.
7962 7962
7963 You can provide the following arguments with ``TEST_TARGET``: 7963 You can provide the following arguments with :term:`TEST_TARGET`:
7964 7964
7965 - *"qemu":* Boots a QEMU image and runs the tests. See the 7965 - *"qemu":* Boots a QEMU image and runs the tests. See the
7966 ":ref:`dev-manual/common-tasks:enabling runtime tests on qemu`" section 7966 ":ref:`dev-manual/common-tasks:enabling runtime tests on qemu`" section
@@ -8298,7 +8298,7 @@ system and gives an overview of their function and contents.
8298 In this example, "sd" is selected as the configuration of the possible four for the 8298 In this example, "sd" is selected as the configuration of the possible four for the
8299 :term:`UBOOT_MACHINE`. The "sd" configuration defines 8299 :term:`UBOOT_MACHINE`. The "sd" configuration defines
8300 "mx6qsabreauto_config" as the value for :term:`UBOOT_MACHINE`, while the 8300 "mx6qsabreauto_config" as the value for :term:`UBOOT_MACHINE`, while the
8301 "sdcard" specifies the ``IMAGE_FSTYPES`` to use for the U-Boot image. 8301 "sdcard" specifies the :term:`IMAGE_FSTYPES` to use for the U-Boot image.
8302 8302
8303 For more information on how the :term:`UBOOT_CONFIG` is handled, see the 8303 For more information on how the :term:`UBOOT_CONFIG` is handled, see the
8304 :ref:`uboot-config <ref-classes-uboot-config>` 8304 :ref:`uboot-config <ref-classes-uboot-config>`
@@ -8357,7 +8357,7 @@ system and gives an overview of their function and contents.
8357 :term:`UBOOT_MKIMAGE_DTCOPTS` 8357 :term:`UBOOT_MKIMAGE_DTCOPTS`
8358 Options for the device tree compiler passed to mkimage '-D' 8358 Options for the device tree compiler passed to mkimage '-D'
8359 feature while creating FIT image in :ref:`kernel-fitimage <ref-classes-kernel-fitimage>` class. 8359 feature while creating FIT image in :ref:`kernel-fitimage <ref-classes-kernel-fitimage>` class.
8360 If ``UBOOT_MKIMAGE_DTCOPTS`` is not set then kernel-fitimage will not 8360 If :term:`UBOOT_MKIMAGE_DTCOPTS` is not set then kernel-fitimage will not
8361 pass the ``-D`` option to mkimage. 8361 pass the ``-D`` option to mkimage.
8362 8362
8363 :term:`UBOOT_MKIMAGE_SIGN` 8363 :term:`UBOOT_MKIMAGE_SIGN`