summaryrefslogtreecommitdiffstats
path: root/documentation/sdk-manual
diff options
context:
space:
mode:
authorQuentin Schulz <foss@0leil.net>2021-08-11 22:06:01 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-14 12:04:23 +0100
commit3d93ddf9e8867ca3f331fc9d3f4eb658a2b7810f (patch)
tree58769f99fa5ac2af2bbff9fe2fc829ee7132023d /documentation/sdk-manual
parented6482821c1cc04d3cd35f6b30631a4d09b594d1 (diff)
downloadpoky-3d93ddf9e8867ca3f331fc9d3f4eb658a2b7810f.tar.gz
docs: fix new override syntax migration
Fix bits missed by the migration script. (From yocto-docs rev: 452e0c5067476fd2ce81f09e6c73da84ced4bbd0) 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/sdk-manual')
-rw-r--r--documentation/sdk-manual/appendix-customizing.rst6
-rw-r--r--documentation/sdk-manual/extensible.rst2
2 files changed, 4 insertions, 4 deletions
diff --git a/documentation/sdk-manual/appendix-customizing.rst b/documentation/sdk-manual/appendix-customizing.rst
index 44f4334c29..4eccc28e9b 100644
--- a/documentation/sdk-manual/appendix-customizing.rst
+++ b/documentation/sdk-manual/appendix-customizing.rst
@@ -73,7 +73,7 @@ adjustments:
73 SDK_INHERIT_BLACKLIST 73 SDK_INHERIT_BLACKLIST
74 is set using the "?=" operator. Consequently, you will need to 74 is set using the "?=" operator. Consequently, you will need to
75 either define the entire list by using the "=" operator, or you 75 either define the entire list by using the "=" operator, or you
76 will need to append a value using either "_append" or the "+=" 76 will need to append a value using either ":append" or the "+="
77 operator. You can learn more about these operators in the 77 operator. You can learn more about these operators in the
78 ":ref:`bitbake:bitbake-user-manual/bitbake-user-manual-metadata:basic syntax`" 78 ":ref:`bitbake:bitbake-user-manual/bitbake-user-manual-metadata:basic syntax`"
79 section of the BitBake User Manual. 79 section of the BitBake User Manual.
@@ -250,7 +250,7 @@ source, you need to do a number of things:
250 recipes that depend on lists of other recipes. 250 recipes that depend on lists of other recipes.
251 251
252 - Build the "world" target and set 252 - Build the "world" target and set
253 ``EXCLUDE_FROM_WORLD_pn-``\ recipename for the recipes you do not 253 ``EXCLUDE_FROM_WORLD:pn-``\ recipename for the recipes you do not
254 want built. See the 254 want built. See the
255 :term:`EXCLUDE_FROM_WORLD` 255 :term:`EXCLUDE_FROM_WORLD`
256 variable for additional information. 256 variable for additional information.
@@ -334,7 +334,7 @@ within it are available. Having these recipes available increases build
334time significantly and increases the size of the SDK installer by 30-80 334time significantly and increases the size of the SDK installer by 30-80
335Mbytes depending on how many recipes are included in your configuration. 335Mbytes depending on how many recipes are included in your configuration.
336 336
337You can use ``EXCLUDE_FROM_WORLD_pn-``\ recipename for recipes you want 337You can use ``EXCLUDE_FROM_WORLD:pn-``\ recipename for recipes you want
338to exclude. However, it is assumed that you would need to be building 338to exclude. However, it is assumed that you would need to be building
339the "world" target if you want to provide additional items to the SDK. 339the "world" target if you want to provide additional items to the SDK.
340Consequently, building for "world" should not represent undue overhead 340Consequently, building for "world" should not represent undue overhead
diff --git a/documentation/sdk-manual/extensible.rst b/documentation/sdk-manual/extensible.rst
index bdce0414e4..8ef44e39ac 100644
--- a/documentation/sdk-manual/extensible.rst
+++ b/documentation/sdk-manual/extensible.rst
@@ -1154,7 +1154,7 @@ subdirectory for each package. Apart from some advanced cases, the
1154splitting. The :term:`PACKAGES` variable lists all of the packages to be 1154splitting. The :term:`PACKAGES` variable lists all of the packages to be
1155produced, while the :term:`FILES` variable specifies which files to include 1155produced, while the :term:`FILES` variable specifies which files to include
1156in each package by using an override to specify the package. For 1156in each package by using an override to specify the package. For
1157example, ``FILES_${PN}`` specifies the files to go into the main package 1157example, ``FILES:${PN}`` specifies the files to go into the main package
1158(i.e. the main package has the same name as the recipe and 1158(i.e. the main package has the same name as the recipe and
1159``${``\ :term:`PN`\ ``}`` evaluates to the 1159``${``\ :term:`PN`\ ``}`` evaluates to the
1160recipe name). The order of the :term:`PACKAGES` value is significant. For 1160recipe name). The order of the :term:`PACKAGES` value is significant. For