summaryrefslogtreecommitdiffstats
path: root/documentation/kernel-dev/kernel-dev-faq.rst
diff options
context:
space:
mode:
authorQuentin Schulz <foss@0leil.net>2020-10-26 18:50:27 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-04 10:55:02 +0000
commitc05ff1dc60b9013b00c741907a62235440c531bf (patch)
tree63d1c1aedc09da7629c569010a9a03841f04ba6d /documentation/kernel-dev/kernel-dev-faq.rst
parent3362474c3e9f22fe635bfc992ec7b9d000f9ce1a (diff)
downloadpoky-c05ff1dc60b9013b00c741907a62235440c531bf.tar.gz
docs: kernel-dev: fix typos, highlights and links
(From yocto-docs rev: 35bf202fb725ce9f0ae28023e36bb8568ac3885d) Signed-off-by: Quentin Schulz <foss@0leil.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit a69247321ff34cb0a2b9a8cc62020ec7f3aad834) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/kernel-dev/kernel-dev-faq.rst')
-rw-r--r--documentation/kernel-dev/kernel-dev-faq.rst17
1 files changed, 8 insertions, 9 deletions
diff --git a/documentation/kernel-dev/kernel-dev-faq.rst b/documentation/kernel-dev/kernel-dev-faq.rst
index 70bf4a2d4b..c9f2102c7d 100644
--- a/documentation/kernel-dev/kernel-dev-faq.rst
+++ b/documentation/kernel-dev/kernel-dev-faq.rst
@@ -50,13 +50,13 @@ How do I install a specific kernel module?
50 50
51Linux kernel modules are packaged individually. To ensure a 51Linux kernel modules are packaged individually. To ensure a
52specific kernel module is included in an image, include it in the 52specific kernel module is included in an image, include it in the
53appropriate machine 53appropriate machine :term:`RRECOMMENDS` variable.
54:term:`RRECOMMENDS` variable.
55These other variables are useful for installing specific modules: 54These other variables are useful for installing specific modules:
56:term:`MACHINE_ESSENTIAL_EXTRA_RDEPENDS` 55- :term:`MACHINE_ESSENTIAL_EXTRA_RDEPENDS`
57:term:`MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS` 56- :term:`MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS`
58:term:`MACHINE_EXTRA_RDEPENDS` 57- :term:`MACHINE_EXTRA_RDEPENDS`
59:term:`MACHINE_EXTRA_RRECOMMENDS` 58- :term:`MACHINE_EXTRA_RRECOMMENDS`
59
60For example, set the following in the ``qemux86.conf`` file to include 60For example, set the following in the ``qemux86.conf`` file to include
61the ``ab123`` kernel modules with images built for the ``qemux86`` 61the ``ab123`` kernel modules with images built for the ``qemux86``
62machine: 62machine:
@@ -64,9 +64,8 @@ machine:
64 64
65 MACHINE_EXTRA_RRECOMMENDS += "kernel-module-ab123" 65 MACHINE_EXTRA_RRECOMMENDS += "kernel-module-ab123"
66 66
67For more 67For more information, see the
68information, see the "`Incorporating Out-of-Tree 68":ref:`kernel-dev/kernel-dev-common:incorporating out-of-tree modules`" section.
69Modules <#incorporating-out-of-tree-modules>`__" section.
70 69
71How do I change the Linux kernel command line? 70How do I change the Linux kernel command line?
72---------------------------------------------- 71----------------------------------------------