summaryrefslogtreecommitdiffstats
path: root/documentation/kernel-dev
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2023-09-17 19:21:48 +0200
committerSteve Sakoman <steve@sakoman.com>2023-09-23 05:26:16 -1000
commitb099a1c252a8bd03bb882f6351f423b96648e921 (patch)
tree041ae98767f14087aa50be612d0eeb94b240ea14 /documentation/kernel-dev
parent337a21080bdb50fa8726d8ed74a290190463dd5f (diff)
downloadpoky-b099a1c252a8bd03bb882f6351f423b96648e921.tar.gz
manuals: update former references to dev-manual/common-tasks
(From yocto-docs rev: f8bb4c392912f15bb78f6f25910f85897abb4e3d) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation/kernel-dev')
-rw-r--r--documentation/kernel-dev/common.rst16
-rw-r--r--documentation/kernel-dev/faq.rst2
-rw-r--r--documentation/kernel-dev/intro.rst2
3 files changed, 10 insertions, 10 deletions
diff --git a/documentation/kernel-dev/common.rst b/documentation/kernel-dev/common.rst
index a5dd02ccf2..4279cbb707 100644
--- a/documentation/kernel-dev/common.rst
+++ b/documentation/kernel-dev/common.rst
@@ -101,13 +101,13 @@ section:
101 101
102 For background information on working with common and BSP layers, 102 For background information on working with common and BSP layers,
103 see the 103 see the
104 ":ref:`dev-manual/common-tasks:understanding and creating layers`" 104 ":ref:`dev-manual/layers:understanding and creating layers`"
105 section in the Yocto Project Development Tasks Manual and the 105 section in the Yocto Project Development Tasks Manual and the
106 ":ref:`bsp-guide/bsp:bsp layers`" section in the Yocto Project Board 106 ":ref:`bsp-guide/bsp:bsp layers`" section in the Yocto Project Board
107 Support (BSP) Developer's Guide, respectively. For information on how to 107 Support (BSP) Developer's Guide, respectively. For information on how to
108 use the ``bitbake-layers create-layer`` command to quickly set up a layer, 108 use the ``bitbake-layers create-layer`` command to quickly set up a layer,
109 see the 109 see the
110 ":ref:`dev-manual/common-tasks:creating a general layer using the \`\`bitbake-layers\`\` script`" 110 ":ref:`dev-manual/layers:creating a general layer using the \`\`bitbake-layers\`\` script`"
111 section in the Yocto Project Development Tasks Manual. 111 section in the Yocto Project Development Tasks Manual.
112 112
1134. *Inform the BitBake Build Environment About Your Layer:* As directed 1134. *Inform the BitBake Build Environment About Your Layer:* As directed
@@ -278,13 +278,13 @@ section:
278 278
279 For background information on working with common and BSP layers, 279 For background information on working with common and BSP layers,
280 see the 280 see the
281 ":ref:`dev-manual/common-tasks:understanding and creating layers`" 281 ":ref:`dev-manual/layers:understanding and creating layers`"
282 section in the Yocto Project Development Tasks Manual and the 282 section in the Yocto Project Development Tasks Manual and the
283 ":ref:`bsp-guide/bsp:bsp layers`" section in the Yocto Project Board 283 ":ref:`bsp-guide/bsp:bsp layers`" section in the Yocto Project Board
284 Support (BSP) Developer's Guide, respectively. For information on how to 284 Support (BSP) Developer's Guide, respectively. For information on how to
285 use the ``bitbake-layers create-layer`` command to quickly set up a layer, 285 use the ``bitbake-layers create-layer`` command to quickly set up a layer,
286 see the 286 see the
287 ":ref:`dev-manual/common-tasks:creating a general layer using the \`\`bitbake-layers\`\` script`" 287 ":ref:`dev-manual/layers:creating a general layer using the \`\`bitbake-layers\`\` script`"
288 section in the Yocto Project Development Tasks Manual. 288 section in the Yocto Project Development Tasks Manual.
289 289
2904. *Inform the BitBake Build Environment About Your Layer:* As directed 2904. *Inform the BitBake Build Environment About Your Layer:* As directed
@@ -364,7 +364,7 @@ layer contains its own :term:`BitBake`
364append files (``.bbappend``) and provides a convenient mechanism to 364append files (``.bbappend``) and provides a convenient mechanism to
365create your own recipe files (``.bb``) as well as store and use kernel 365create your own recipe files (``.bb``) as well as store and use kernel
366patch files. For background information on working with layers, see the 366patch files. For background information on working with layers, see the
367":ref:`dev-manual/common-tasks:understanding and creating layers`" 367":ref:`dev-manual/layers:understanding and creating layers`"
368section in the Yocto Project Development Tasks Manual. 368section in the Yocto Project Development Tasks Manual.
369 369
370.. note:: 370.. note::
@@ -372,7 +372,7 @@ section in the Yocto Project Development Tasks Manual.
372 The Yocto Project comes with many tools that simplify tasks you need 372 The Yocto Project comes with many tools that simplify tasks you need
373 to perform. One such tool is the ``bitbake-layers create-layer`` 373 to perform. One such tool is the ``bitbake-layers create-layer``
374 command, which simplifies creating a new layer. See the 374 command, which simplifies creating a new layer. See the
375 ":ref:`dev-manual/common-tasks:creating a general layer using the \`\`bitbake-layers\`\` script`" 375 ":ref:`dev-manual/layers:creating a general layer using the \`\`bitbake-layers\`\` script`"
376 section in the Yocto Project Development Tasks Manual for 376 section in the Yocto Project Development Tasks Manual for
377 information on how to use this script to quick set up a new layer. 377 information on how to use this script to quick set up a new layer.
378 378
@@ -425,7 +425,7 @@ home directory:
425 The :term:`FILESEXTRAPATHS` and :term:`SRC_URI` statements 425 The :term:`FILESEXTRAPATHS` and :term:`SRC_URI` statements
426 enable the OpenEmbedded build system to find patch files. For more 426 enable the OpenEmbedded build system to find patch files. For more
427 information on using append files, see the 427 information on using append files, see the
428 ":ref:`dev-manual/common-tasks:appending other layers metadata with your layer`" 428 ":ref:`dev-manual/layers:appending other layers metadata with your layer`"
429 section in the Yocto Project Development Tasks Manual. 429 section in the Yocto Project Development Tasks Manual.
430 430
431Modifying an Existing Recipe 431Modifying an Existing Recipe
@@ -1070,7 +1070,7 @@ Section.
1070 For more information on append files and patches, see the 1070 For more information on append files and patches, see the
1071 ":ref:`kernel-dev/common:creating the append file`" and 1071 ":ref:`kernel-dev/common:creating the append file`" and
1072 ":ref:`kernel-dev/common:applying patches`" sections. You can also see the 1072 ":ref:`kernel-dev/common:applying patches`" sections. You can also see the
1073 ":ref:`dev-manual/common-tasks:appending other layers metadata with your layer`" 1073 ":ref:`dev-manual/layers:appending other layers metadata with your layer`"
1074 section in the Yocto Project Development Tasks Manual. 1074 section in the Yocto Project Development Tasks Manual.
1075 1075
1076 .. note:: 1076 .. note::
diff --git a/documentation/kernel-dev/faq.rst b/documentation/kernel-dev/faq.rst
index 76923f6104..4dffa90dbd 100644
--- a/documentation/kernel-dev/faq.rst
+++ b/documentation/kernel-dev/faq.rst
@@ -38,7 +38,7 @@ The kernel image (e.g. ``vmlinuz``) is provided by the
38specify whether or not the kernel image is installed in the generated 38specify whether or not the kernel image is installed in the generated
39root filesystem, override ``RRECOMMENDS:${KERNEL_PACKAGE_NAME}-base`` to include or not 39root filesystem, override ``RRECOMMENDS:${KERNEL_PACKAGE_NAME}-base`` to include or not
40include "kernel-image". See the 40include "kernel-image". See the
41":ref:`dev-manual/common-tasks:appending other layers metadata with your layer`" 41":ref:`dev-manual/layers:appending other layers metadata with your layer`"
42section in the 42section in the
43Yocto Project Development Tasks Manual for information on how to use an 43Yocto Project Development Tasks Manual for information on how to use an
44append file to override metadata. 44append file to override metadata.
diff --git a/documentation/kernel-dev/intro.rst b/documentation/kernel-dev/intro.rst
index e406f6e47f..cc879db887 100644
--- a/documentation/kernel-dev/intro.rst
+++ b/documentation/kernel-dev/intro.rst
@@ -87,7 +87,7 @@ understand the following documentation:
87 as described in the Yocto Project Application Development and the 87 as described in the Yocto Project Application Development and the
88 Extensible Software Development Kit (eSDK) manual. 88 Extensible Software Development Kit (eSDK) manual.
89 89
90- The ":ref:`dev-manual/common-tasks:understanding and creating layers`" 90- The ":ref:`dev-manual/layers:understanding and creating layers`"
91 section in the Yocto Project Development Tasks Manual. 91 section in the Yocto Project Development Tasks Manual.
92 92
93- The ":ref:`kernel-dev/intro:kernel modification workflow`" section. 93- The ":ref:`kernel-dev/intro:kernel modification workflow`" section.