summaryrefslogtreecommitdiffstats
path: root/documentation/kernel-dev
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/kernel-dev
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/kernel-dev')
-rw-r--r--documentation/kernel-dev/common.rst10
1 files changed, 4 insertions, 6 deletions
diff --git a/documentation/kernel-dev/common.rst b/documentation/kernel-dev/common.rst
index fd00a9d1dc..dff8f504fd 100644
--- a/documentation/kernel-dev/common.rst
+++ b/documentation/kernel-dev/common.rst
@@ -1685,12 +1685,10 @@ looks much like the one provided with the ``hello-mod`` template::
1685 ... 1685 ...
1686 1686
1687The important point to note here is the :term:`KERNEL_SRC` variable. The 1687The important point to note here is the :term:`KERNEL_SRC` variable. The
1688:ref:`module <ref-classes-module>` class sets this variable and the 1688:ref:`ref-classes-module` class sets this variable and the :term:`KERNEL_PATH`
1689:term:`KERNEL_PATH` variable to 1689variable to ``${STAGING_KERNEL_DIR}`` with the necessary Linux kernel build
1690``${STAGING_KERNEL_DIR}`` with the necessary Linux kernel build 1690information to build modules. If your module ``Makefile`` uses a different
1691information to build modules. If your module ``Makefile`` uses a 1691variable, you might want to override the :ref:`ref-tasks-compile` step, or
1692different variable, you might want to override the
1693:ref:`ref-tasks-compile` step, or
1694create a patch to the ``Makefile`` to work with the more typical 1692create a patch to the ``Makefile`` to work with the more typical
1695:term:`KERNEL_SRC` or :term:`KERNEL_PATH` variables. 1693:term:`KERNEL_SRC` or :term:`KERNEL_PATH` variables.
1696 1694