summaryrefslogtreecommitdiffstats
path: root/documentation/kernel-dev
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2024-03-30 18:56:12 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-04-12 17:29:34 +0100
commita738448d83e28e97501ac30076f980efeeab4c83 (patch)
tree2a3c2b59913923d0734b4b72cbb6155c920f6236 /documentation/kernel-dev
parent3ad2f245f0780bab65f01bca8b813bae9b06ca76 (diff)
downloadpoky-a738448d83e28e97501ac30076f980efeeab4c83.tar.gz
manuals: remove tab characters
As reported by "make sphinx-lint" Tabs are even removed in Makefile examples, as Sphinx turns them to spaces anyway in the generated output. (From yocto-docs rev: 20e9c0c9fad3109567948af6bc40bb0fa2a5552b) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Reviewed-by: Quentin Schulz <quentin.schulz@theobroma-systems.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/kernel-dev')
-rw-r--r--documentation/kernel-dev/advanced.rst4
-rw-r--r--documentation/kernel-dev/common.rst4
2 files changed, 4 insertions, 4 deletions
diff --git a/documentation/kernel-dev/advanced.rst b/documentation/kernel-dev/advanced.rst
index bcaaaeed14..4c463503f6 100644
--- a/documentation/kernel-dev/advanced.rst
+++ b/documentation/kernel-dev/advanced.rst
@@ -303,8 +303,8 @@ The following listings show the ``build.scc`` file and part of the
303 . 303 .
304 . 304 .
305 . 305 .
306 char *dump_write = NULL, *files_source = NULL; 306 char *dump_write = NULL, *files_source = NULL;
307 int opt; 307 int opt;
308 -- 308 --
309 2.10.1 309 2.10.1
310 310
diff --git a/documentation/kernel-dev/common.rst b/documentation/kernel-dev/common.rst
index 9a7a1907f6..fda41694dc 100644
--- a/documentation/kernel-dev/common.rst
+++ b/documentation/kernel-dev/common.rst
@@ -1668,10 +1668,10 @@ looks much like the one provided with the ``hello-mod`` template::
1668 SRC := $(shell pwd) 1668 SRC := $(shell pwd)
1669 1669
1670 all: 1670 all:
1671 $(MAKE) -C $(KERNEL_SRC) M=$(SRC) 1671 $(MAKE) -C $(KERNEL_SRC) M=$(SRC)
1672 1672
1673 modules_install: 1673 modules_install:
1674 $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install 1674 $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install
1675 ... 1675 ...
1676 1676
1677The important point to note here is the :term:`KERNEL_SRC` variable. The 1677The important point to note here is the :term:`KERNEL_SRC` variable. The