summaryrefslogtreecommitdiffstats
path: root/documentation/sdk-manual
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2023-01-05 08:34:26 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-06 17:39:09 +0000
commit8b1909aa6f7a51a878dc3d4a9223403ad3e164a9 (patch)
treee1418f545ad6640afb5fde004696eef2a9e6e67b /documentation/sdk-manual
parentae280972ffba62d7ed839b692957f61b0955cbca (diff)
downloadpoky-8b1909aa6f7a51a878dc3d4a9223403ad3e164a9.tar.gz
manuals: simplify references to classes
Now that .bbclass is removed from class section titles. We can now have, for example, :ref:`ref-classes-insane` instead of :ref:`insane <ref-classes-insane>`. Then, when necessary, rework paragraphs so that they have lines of even length, not exceeding 80 characters. (From yocto-docs rev: e76190e3be78c1e483bec0469f1e437dbf8f3791) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Suggested-by: Quentin Schulz <foss+yocto@0leil.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/sdk-manual')
-rw-r--r--documentation/sdk-manual/appendix-customizing.rst3
-rw-r--r--documentation/sdk-manual/extensible.rst5
2 files changed, 3 insertions, 5 deletions
diff --git a/documentation/sdk-manual/appendix-customizing.rst b/documentation/sdk-manual/appendix-customizing.rst
index c1a36c471d..2be76875e0 100644
--- a/documentation/sdk-manual/appendix-customizing.rst
+++ b/documentation/sdk-manual/appendix-customizing.rst
@@ -49,8 +49,7 @@ build system applies them against ``local.conf`` and ``auto.conf``:
49 :term:`ESDK_CLASS_INHERIT_DISABLE` to disable these classes is the typical 49 :term:`ESDK_CLASS_INHERIT_DISABLE` to disable these classes is the typical
50 method to disable classes that are problematic or unnecessary in the SDK 50 method to disable classes that are problematic or unnecessary in the SDK
51 context. The default value disables the 51 context. The default value disables the
52 :ref:`buildhistory <ref-classes-buildhistory>` and 52 :ref:`ref-classes-buildhistory` and :ref:`ref-classes-icecc` classes.
53 :ref:`icecc <ref-classes-icecc>` classes.
54 53
55Additionally, the contents of ``conf/sdk-extra.conf``, when present, are 54Additionally, the contents of ``conf/sdk-extra.conf``, when present, are
56appended to the end of ``conf/local.conf`` within the produced SDK, 55appended to the end of ``conf/local.conf`` within the produced SDK,
diff --git a/documentation/sdk-manual/extensible.rst b/documentation/sdk-manual/extensible.rst
index e8a0a5b3ce..7c7ceb695a 100644
--- a/documentation/sdk-manual/extensible.rst
+++ b/documentation/sdk-manual/extensible.rst
@@ -1079,9 +1079,8 @@ does not include complete instructions for building the software.
1079Instead, common functionality is encapsulated in classes inherited with 1079Instead, common functionality is encapsulated in classes inherited with
1080the ``inherit`` directive. This technique leaves the recipe to describe 1080the ``inherit`` directive. This technique leaves the recipe to describe
1081just the things that are specific to the software being built. There is 1081just the things that are specific to the software being built. There is
1082a :ref:`base <ref-classes-base>` class that 1082a :ref:`ref-classes-base` class that is implicitly inherited by all recipes
1083is implicitly inherited by all recipes and provides the functionality 1083and provides the functionality that most recipes typically need.
1084that most recipes typically need.
1085 1084
1086The remainder of this section presents information useful when working 1085The remainder of this section presents information useful when working
1087with recipes. 1086with recipes.