summaryrefslogtreecommitdiffstats
path: root/documentation/kernel-dev
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2024-03-30 18:56:12 +0100
committerSteve Sakoman <steve@sakoman.com>2024-04-19 04:50:40 -0700
commit364c5c906e20e8c3a5dc93309281b52ed92dc351 (patch)
treedf56d514ec4c8871de3f6fa4fbb18545696345f9 /documentation/kernel-dev
parent9f0fd0ad0ea38742c69d452030b454b9f3373d91 (diff)
downloadpoky-364c5c906e20e8c3a5dc93309281b52ed92dc351.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: fd1423141e7458ba557db465c171b0b4e9063987) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Reviewed-by: Quentin Schulz <quentin.schulz@theobroma-systems.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
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 eae2d49ba4..f4820a4ad2 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 3f9d8d48e4..815695652b 100644
--- a/documentation/kernel-dev/common.rst
+++ b/documentation/kernel-dev/common.rst
@@ -1749,10 +1749,10 @@ looks much like the one provided with the ``hello-mod`` template::
1749 SRC := $(shell pwd) 1749 SRC := $(shell pwd)
1750 1750
1751 all: 1751 all:
1752 $(MAKE) -C $(KERNEL_SRC) M=$(SRC) 1752 $(MAKE) -C $(KERNEL_SRC) M=$(SRC)
1753 1753
1754 modules_install: 1754 modules_install:
1755 $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install 1755 $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install
1756 ... 1756 ...
1757 1757
1758The important point to note here is the :term:`KERNEL_SRC` variable. The 1758The important point to note here is the :term:`KERNEL_SRC` variable. The