summaryrefslogtreecommitdiffstats
path: root/documentation/sdk-manual
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-03-07 15:41:51 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-16 14:25:01 +0000
commit809b96e9316076909345d0fa7866f5155aeee767 (patch)
tree16dff3a5e07aa005066bd11efccaea746a0752a9 /documentation/sdk-manual
parent88e368dca48957314bca2a9a369dcde515953633 (diff)
downloadpoky-809b96e9316076909345d0fa7866f5155aeee767.tar.gz
manuals: inclusive language updates
Changes identified by OE core's scripts/contrib/convert-variable-renames.py script Original variable names are kept in old migration notes, but references to the new ones are provided. (From yocto-docs rev: 1a35380ca80509fee036018a2bbb22ba9b44d47a) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/sdk-manual')
-rw-r--r--documentation/sdk-manual/appendix-customizing.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/documentation/sdk-manual/appendix-customizing.rst b/documentation/sdk-manual/appendix-customizing.rst
index f8e56477f3..9a76cc59d6 100644
--- a/documentation/sdk-manual/appendix-customizing.rst
+++ b/documentation/sdk-manual/appendix-customizing.rst
@@ -21,7 +21,7 @@ build system applies them against ``local.conf`` and ``auto.conf``:
21 specific to the :term:`Build Host`. 21 specific to the :term:`Build Host`.
22 22
23- Variables listed in 23- Variables listed in
24 :term:`SDK_LOCAL_CONF_BLACKLIST` 24 :term:`ESDK_LOCALCONF_REMOVE`
25 are excluded. These variables are not allowed through from the 25 are excluded. These variables are not allowed through from the
26 OpenEmbedded build system configuration into the extensible SDK 26 OpenEmbedded build system configuration into the extensible SDK
27 configuration. Typically, these variables are specific to the machine 27 configuration. Typically, these variables are specific to the machine
@@ -29,19 +29,19 @@ build system applies them against ``local.conf`` and ``auto.conf``:
29 of the extensible SDK configuration. 29 of the extensible SDK configuration.
30 30
31 For a list of the variables excluded by default, see the 31 For a list of the variables excluded by default, see the
32 :term:`SDK_LOCAL_CONF_BLACKLIST` 32 :term:`ESDK_LOCALCONF_REMOVE`
33 in the glossary of the Yocto Project Reference Manual. 33 in the glossary of the Yocto Project Reference Manual.
34 34
35- Variables listed in 35- Variables listed in
36 :term:`SDK_LOCAL_CONF_WHITELIST` 36 :term:`ESDK_LOCALCONF_ALLOW`
37 are included. Including a variable in the value of 37 are included. Including a variable in the value of
38 :term:`SDK_LOCAL_CONF_WHITELIST` overrides either of the previous two 38 :term:`ESDK_LOCALCONF_ALLOW` overrides either of the previous two
39 filters. The default value is blank. 39 filters. The default value is blank.
40 40
41- Classes inherited globally with 41- Classes inherited globally with
42 :term:`INHERIT` that are listed in 42 :term:`INHERIT` that are listed in
43 :term:`SDK_INHERIT_BLACKLIST` 43 :term:`ESDK_CLASS_INHERIT_DISABLE`
44 are disabled. Using :term:`SDK_INHERIT_BLACKLIST` to disable these 44 are disabled. Using :term:`ESDK_CLASS_INHERIT_DISABLE` to disable these
45 classes is the typical method to disable classes that are problematic 45 classes is the typical method to disable classes that are problematic
46 or unnecessary in the SDK context. The default value disables the 46 or unnecessary in the SDK context. The default value disables the
47 :ref:`buildhistory <ref-classes-buildhistory>` 47 :ref:`buildhistory <ref-classes-buildhistory>`
@@ -63,13 +63,13 @@ adjustments:
63- If your SDK configuration inherits additional classes using the 63- If your SDK configuration inherits additional classes using the
64 :term:`INHERIT` variable and you 64 :term:`INHERIT` variable and you
65 do not need or want those classes enabled in the SDK, you can 65 do not need or want those classes enabled in the SDK, you can
66 disable them by adding them to the :term:`SDK_INHERIT_BLACKLIST` 66 disable them by adding them to the :term:`ESDK_CLASS_INHERIT_DISABLE`
67 variable as described in the previous section. 67 variable as described in the previous section.
68 68
69 .. note:: 69 .. note::
70 70
71 The default value of 71 The default value of
72 SDK_INHERIT_BLACKLIST 72 ESDK_CLASS_INHERIT_DISABLE
73 is set using the "?=" operator. Consequently, you will need to 73 is set using the "?=" operator. Consequently, you will need to
74 either define the entire list by using the "=" operator, or you 74 either define the entire list by using the "=" operator, or you
75 will need to append a value using either ":append" or the "+=" 75 will need to append a value using either ":append" or the "+="
@@ -92,7 +92,7 @@ adjustments:
92 92
93 - Disable the tasks if they are added by a class and you do not need 93 - Disable the tasks if they are added by a class and you do not need
94 the functionality the class provides in the extensible SDK. To 94 the functionality the class provides in the extensible SDK. To
95 disable the tasks, add the class to the :term:`SDK_INHERIT_BLACKLIST` 95 disable the tasks, add the class to the :term:`ESDK_CLASS_INHERIT_DISABLE`
96 variable as described in the previous section. 96 variable as described in the previous section.
97 97
98- Generally, you want to have a shared state mirror set up so users of 98- Generally, you want to have a shared state mirror set up so users of
@@ -277,7 +277,7 @@ source, you need to do a number of things:
277 configuration file. You can then pass the variable to the SDK by 277 configuration file. You can then pass the variable to the SDK by
278 adding the following:: 278 adding the following::
279 279
280 SDK_LOCAL_CONF_WHITELIST = "SSTATE_MIRRORS" 280 ESDK_LOCALCONF_ALLOW = "SSTATE_MIRRORS"
281 281
282 - Alternatively, if you just want to set the :term:`SSTATE_MIRRORS` 282 - Alternatively, if you just want to set the :term:`SSTATE_MIRRORS`
283 variable's value for the SDK alone, create a 283 variable's value for the SDK alone, create a