summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2021-05-23 08:22:50 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-06-02 23:32:34 +0100
commit23ff556abefac3b3ad1a03543c1f5d93d055f8e2 (patch)
tree5fb4e292a81ad545bb67570e578542917011b0cc /documentation/ref-manual
parentb5d761583e848fc850af2a5f3b27f4dd43df2c4d (diff)
downloadpoky-23ff556abefac3b3ad1a03543c1f5d93d055f8e2.tar.gz
ref-manual: add SRCTREECOVEREDTASKS to variable glossary
(From yocto-docs rev: c3e8eb234c9d1cf67dc46666ea26c1e4eb945c2c) Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Reviewed-by: Quentin Schulz <foss@0leil.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual')
-rw-r--r--documentation/ref-manual/variables.rst24
1 files changed, 24 insertions, 0 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index df6413b68a..b179abf745 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -7092,6 +7092,30 @@ system and gives an overview of their function and contents.
7092 ":ref:`dev-manual/common-tasks:automatically incrementing a package version number`" 7092 ":ref:`dev-manual/common-tasks:automatically incrementing a package version number`"
7093 section, which is in the Yocto Project Development Tasks Manual. 7093 section, which is in the Yocto Project Development Tasks Manual.
7094 7094
7095 :term:`SRCTREECOVEREDTASKS`
7096 A list of tasks that are typically not relevant (and therefore skipped)
7097 when building using the :ref:`externalsrc <ref-classes-externalsrc>`
7098 class. The default value as set in that class file is the set of tasks
7099 that are rarely needed when using external source::
7100
7101 SRCTREECOVEREDTASKS ?= "do_patch do_unpack do_fetch"
7102
7103 The notable exception is when processing external kernel source as
7104 defined in the :ref:`kernel-yocto <ref-classes-kernel-yocto>`
7105 class file (formatted for aesthetics)::
7106
7107 SRCTREECOVEREDTASKS += "\
7108 do_validate_branches \
7109 do_kernel_configcheck \
7110 do_kernel_checkout \
7111 do_fetch \
7112 do_unpack \
7113 do_patch \
7114 "
7115
7116 See the associated :term:`EXTERNALSRC` and :term:`EXTERNALSRC_BUILD`
7117 variables for more information.
7118
7095 :term:`SSTATE_DIR` 7119 :term:`SSTATE_DIR`
7096 The directory for the shared state cache. 7120 The directory for the shared state cache.
7097 7121