summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/classes.rst
diff options
context:
space:
mode:
authorQuentin Schulz <foss@0leil.net>2021-12-06 16:04:01 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-12-13 23:31:34 +0000
commite71983bc7dba65df6273faaad92c5a43afded0ff (patch)
treeb5882d468d58514fdf0e93a24c03fb916be63958 /documentation/ref-manual/classes.rst
parent99474e0d681cc9beb3604f214884054b3aec38a1 (diff)
downloadpoky-e71983bc7dba65df6273faaad92c5a43afded0ff.tar.gz
make the documentation a bit more inclusive
Except the name of variables which can't be changed only in the documentation for obvious reasons and workflow or developement explanations around the use of the "master" branch which cannot be replaced with "development" branch instead, most of the non-inclusive words that appear in https://inclusivenaming.org/word-lists/tier-1/ should have been replaced in this patch. (From yocto-docs rev: 2755f35060084f7af356091de9dc144f85530fe2) Signed-off-by: Quentin Schulz <foss+yocto@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/classes.rst')
-rw-r--r--documentation/ref-manual/classes.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/documentation/ref-manual/classes.rst b/documentation/ref-manual/classes.rst
index e258469dcb..2c191f407e 100644
--- a/documentation/ref-manual/classes.rst
+++ b/documentation/ref-manual/classes.rst
@@ -214,13 +214,13 @@ the class.
214===================== 214=====================
215 215
216The ``blacklist`` class prevents the OpenEmbedded build system from 216The ``blacklist`` class prevents the OpenEmbedded build system from
217building specific recipes (blacklists them). To use this class, inherit 217building specific recipes. To use this class, inherit
218the class globally and set :term:`PNBLACKLIST` for 218the class globally and set :term:`PNBLACKLIST` for
219each recipe you wish to blacklist. Specify the :term:`PN` 219each recipe you wish to ignore. Specify the :term:`PN`
220value as a variable flag (varflag) and provide a reason, which is 220value as a variable flag (varflag) and provide a reason, which is
221reported, if the package is requested to be built as the value. For 221reported, if the package is requested to be built as the value. For
222example, if you want to blacklist a recipe called "exoticware", you add 222example, if you want to ignore a recipe called "exoticware", you
223the following to your ``local.conf`` or distribution configuration:: 223add the following to your ``local.conf`` or distribution configuration::
224 224
225 INHERIT += "blacklist" 225 INHERIT += "blacklist"
226 PNBLACKLIST[exoticware] = "Not supported by our organization." 226 PNBLACKLIST[exoticware] = "Not supported by our organization."
@@ -845,10 +845,10 @@ provided by the recipe ``icecc-create-env-native.bb``.
845 icecc. 845 icecc.
846 846
847If you do not want the Icecream distributed compile support to apply to 847If you do not want the Icecream distributed compile support to apply to
848specific recipes or classes, you can effectively "blacklist" them by 848specific recipes or classes, you can ask them to be ignored by Icecream
849listing the recipes and classes using the 849by listing the recipes and classes using the
850:term:`ICECC_USER_PACKAGE_BL` and 850:term:`ICECC_USER_PACKAGE_BL` and
851:term:`ICECC_USER_CLASS_BL`, variables, 851:term:`ICECC_USER_CLASS_BL` variables,
852respectively, in your ``local.conf`` file. Doing so causes the 852respectively, in your ``local.conf`` file. Doing so causes the
853OpenEmbedded build system to handle these compilations locally. 853OpenEmbedded build system to handle these compilations locally.
854 854