summaryrefslogtreecommitdiffstats
path: root/documentation/kernel-dev/common.rst
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2021-05-12 11:30:15 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-22 12:16:40 +0100
commit020562cfbc3129c3cad7ebc8a5a8447681e5efed (patch)
tree3b6ec01a5dcbce135f24b14639d83853e9711048 /documentation/kernel-dev/common.rst
parent4db4e4ca46e8b23d5042d925ce5ad3073de4c3ed (diff)
downloadpoky-020562cfbc3129c3cad7ebc8a5a8447681e5efed.tar.gz
kernel-dev manual: simplify style
(From yocto-docs rev: 5bbbed35175ffcabb24bcac305d17563b8d9b9e3) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/kernel-dev/common.rst')
-rw-r--r--documentation/kernel-dev/common.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/documentation/kernel-dev/common.rst b/documentation/kernel-dev/common.rst
index 0fede0c012..f64cbab56c 100644
--- a/documentation/kernel-dev/common.rst
+++ b/documentation/kernel-dev/common.rst
@@ -578,7 +578,7 @@ recipe is processed.
578 578
579.. note:: 579.. note::
580 580
581 Other methods exist to accomplish grouping and defining configuration 581 There are other ways of grouping and defining configuration
582 options. For example, if you are working with a local clone of the 582 options. For example, if you are working with a local clone of the
583 kernel repository, you could checkout the kernel's ``meta`` branch, 583 kernel repository, you could checkout the kernel's ``meta`` branch,
584 make your changes, and then push the changes to the local bare clone 584 make your changes, and then push the changes to the local bare clone
@@ -781,8 +781,8 @@ the ":ref:`kernel-dev/common:getting ready to develop using \`\`devtool\`\``" Se
781 781
782 .. note:: 782 .. note::
783 783
784 During the checkout operation, a bug exists that could cause 784 During the checkout operation, there is a bug that could cause
785 errors such as the following to appear: 785 errors such as the following:
786 786
787 .. code-block:: none 787 .. code-block:: none
788 788
@@ -1306,7 +1306,7 @@ steps:
1306 $ bitbake linux-yocto -c kernel_configme -f 1306 $ bitbake linux-yocto -c kernel_configme -f
1307 1307
1308 This step ensures that you create a 1308 This step ensures that you create a
1309 ``.config`` file from a known state. Because situations exist where 1309 ``.config`` file from a known state. Because there are situations where
1310 your build state might become unknown, it is best to run this task 1310 your build state might become unknown, it is best to run this task
1311 prior to starting ``menuconfig``. 1311 prior to starting ``menuconfig``.
1312 1312
@@ -1536,7 +1536,7 @@ Working with a "Dirty" Kernel Version String
1536============================================ 1536============================================
1537 1537
1538If you build a kernel image and the version string has a "+" or a 1538If you build a kernel image and the version string has a "+" or a
1539"-dirty" at the end, uncommitted modifications exist in the kernel's 1539"-dirty" at the end, it means there are uncommitted modifications in the kernel's
1540source directory. Follow these steps to clean up the version string: 1540source directory. Follow these steps to clean up the version string:
1541 1541
15421. *Discover the Uncommitted Changes:* Go to the kernel's locally cloned 15421. *Discover the Uncommitted Changes:* Go to the kernel's locally cloned
@@ -1615,7 +1615,7 @@ Here are some basic steps you can use to work with your own sources:
1615 1615
1616 Running the ``make defconfig`` command results in the default 1616 Running the ``make defconfig`` command results in the default
1617 configuration for your architecture as defined by your kernel. 1617 configuration for your architecture as defined by your kernel.
1618 However, no guarantee exists that this configuration is valid for 1618 However, there is no guarantee that this configuration is valid for
1619 your use case, or that your board will even boot. This is 1619 your use case, or that your board will even boot. This is
1620 particularly true for non-x86 architectures. 1620 particularly true for non-x86 architectures.
1621 1621