summaryrefslogtreecommitdiffstats
path: root/documentation/test-manual
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-12-06 19:09:35 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-18 10:41:21 +0000
commitf417d3274c427908c43f8cd20e797609450a3724 (patch)
treeb09dd3addc6a43f1711573ee66db7c5445bc2d72 /documentation/test-manual
parentf3adc7a899b85101238b24989ebf824a6066f9fa (diff)
downloadpoky-f417d3274c427908c43f8cd20e797609450a3724.tar.gz
manuals: add missing references to variables
[YOCTO #14508] (From yocto-docs rev: 7878a21be8fb6c7a1ab88ae44aa5f7bf0079391a) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/test-manual')
-rw-r--r--documentation/test-manual/intro.rst8
-rw-r--r--documentation/test-manual/reproducible-builds.rst2
-rw-r--r--documentation/test-manual/understand-autobuilder.rst2
3 files changed, 6 insertions, 6 deletions
diff --git a/documentation/test-manual/intro.rst b/documentation/test-manual/intro.rst
index 9afe108396..2d75e141f1 100644
--- a/documentation/test-manual/intro.rst
+++ b/documentation/test-manual/intro.rst
@@ -512,14 +512,14 @@ workers, consider the following:
512 512
513**Running "cleanall" is not permitted.** 513**Running "cleanall" is not permitted.**
514 514
515This can delete files from DL_DIR which would potentially break other 515This can delete files from :term:`DL_DIR` which would potentially break other
516builds running in parallel. If this is required, DL_DIR must be set to 516builds running in parallel. If this is required, :term:`DL_DIR` must be set to
517an isolated directory. 517an isolated directory.
518 518
519**Running "cleansstate" is not permitted.** 519**Running "cleansstate" is not permitted.**
520 520
521This can delete files from SSTATE_DIR which would potentially break 521This can delete files from :term:`SSTATE_DIR` which would potentially break
522other builds running in parallel. If this is required, SSTATE_DIR must 522other builds running in parallel. If this is required, :term:`SSTATE_DIR` must
523be set to an isolated directory. Alternatively, you can use the "-f" 523be set to an isolated directory. Alternatively, you can use the "-f"
524option with the ``bitbake`` command to "taint" tasks by changing the 524option with the ``bitbake`` command to "taint" tasks by changing the
525sstate checksums to ensure sstate cache items will not be reused. 525sstate checksums to ensure sstate cache items will not be reused.
diff --git a/documentation/test-manual/reproducible-builds.rst b/documentation/test-manual/reproducible-builds.rst
index 61127de23c..2a2f7790d2 100644
--- a/documentation/test-manual/reproducible-builds.rst
+++ b/documentation/test-manual/reproducible-builds.rst
@@ -71,7 +71,7 @@ things we do within the build system to ensure reproducibility include:
71.. note:: 71.. note::
72 72
73 Because of an open bug in GCC, using ``DISTRO_FEATURES:append = " lto"`` or 73 Because of an open bug in GCC, using ``DISTRO_FEATURES:append = " lto"`` or
74 adding ``-flto`` (Link Time Optimization) to ``CFLAGS`` makes the resulting 74 adding ``-flto`` (Link Time Optimization) to :term:`CFLAGS` makes the resulting
75 binary non-reproducible, in that it depends on the full absolute build path 75 binary non-reproducible, in that it depends on the full absolute build path
76 to ``recipe-sysroot-native``, so installing the Yocto Project in a different 76 to ``recipe-sysroot-native``, so installing the Yocto Project in a different
77 directory results in a different binary. 77 directory results in a different binary.
diff --git a/documentation/test-manual/understand-autobuilder.rst b/documentation/test-manual/understand-autobuilder.rst
index 70ec4535f5..bfdc678164 100644
--- a/documentation/test-manual/understand-autobuilder.rst
+++ b/documentation/test-manual/understand-autobuilder.rst
@@ -170,7 +170,7 @@ the system can checkout repositories.
170Shared DL_DIR 170Shared DL_DIR
171------------- 171-------------
172 172
173The Workers are all connected over NFS which allows DL_DIR to be shared 173The Workers are all connected over NFS which allows :term:`DL_DIR` to be shared
174between them. This reduces network accesses from the system and allows 174between them. This reduces network accesses from the system and allows
175the build to be sped up. Usage of the directory within the build system 175the build to be sped up. Usage of the directory within the build system
176is designed to be able to be shared over NFS. 176is designed to be able to be shared over NFS.