summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2021-12-16 08:22:42 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-01-07 11:12:06 +0000
commit36d200ab0adbf76d6d8197551b3304afcf069716 (patch)
treede9c18b1ea455ac2eeb4ea0a5716a9dfd5158b42 /documentation/dev-manual
parent620ba2535c0123958ec5cad56a667588cb8112f2 (diff)
downloadpoky-36d200ab0adbf76d6d8197551b3304afcf069716.tar.gz
manuals: replace "rootfs" by "root filesystem"
Almost everyone understands "rootfs", but "root filesystem" is real English. (From yocto-docs rev: 3d610f15e5b6be3435e9e81e4498a676671e5b39) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual')
-rw-r--r--documentation/dev-manual/common-tasks.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst
index f7d82ba191..9d0c8f33d4 100644
--- a/documentation/dev-manual/common-tasks.rst
+++ b/documentation/dev-manual/common-tasks.rst
@@ -2243,12 +2243,13 @@ error during the
2243 2243
2244If you have recipes that use ``pkg_postinst`` function and they require 2244If you have recipes that use ``pkg_postinst`` function and they require
2245the use of non-standard native tools that have dependencies during 2245the use of non-standard native tools that have dependencies during
2246rootfs construction, you need to use the 2246root filesystem construction, you need to use the
2247:term:`PACKAGE_WRITE_DEPS` 2247:term:`PACKAGE_WRITE_DEPS`
2248variable in your recipe to list these tools. If you do not use this 2248variable in your recipe to list these tools. If you do not use this
2249variable, the tools might be missing and execution of the 2249variable, the tools might be missing and execution of the
2250post-installation script is deferred until first boot. Deferring the 2250post-installation script is deferred until first boot. Deferring the
2251script to first boot is undesirable and for read-only rootfs impossible. 2251script to the first boot is undesirable and impossible for read-only
2252root filesystems.
2252 2253
2253.. note:: 2254.. note::
2254 2255
@@ -8487,14 +8488,14 @@ perform a one-time setup of your controller image by doing the following:
8487 8488
8488 - Uses a custom Initial RAM Disk (initramfs) image with a custom 8489 - Uses a custom Initial RAM Disk (initramfs) image with a custom
8489 installer. A normal image that you can install usually creates a 8490 installer. A normal image that you can install usually creates a
8490 single rootfs partition. This image uses another installer that 8491 single root filesystem partition. This image uses another installer that
8491 creates a specific partition layout. Not all Board Support 8492 creates a specific partition layout. Not all Board Support
8492 Packages (BSPs) can use an installer. For such cases, you need to 8493 Packages (BSPs) can use an installer. For such cases, you need to
8493 manually create the following partition layout on the target: 8494 manually create the following partition layout on the target:
8494 8495
8495 - First partition mounted under ``/boot``, labeled "boot". 8496 - First partition mounted under ``/boot``, labeled "boot".
8496 8497
8497 - The main rootfs partition where this image gets installed, 8498 - The main root filesystem partition where this image gets installed,
8498 which is mounted under ``/``. 8499 which is mounted under ``/``.
8499 8500
8500 - Another partition labeled "testrootfs" where test images get 8501 - Another partition labeled "testrootfs" where test images get