summaryrefslogtreecommitdiffstats
path: root/documentation/kernel-dev/kernel-dev-faq.rst
diff options
context:
space:
mode:
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----------------------------------------------