diff options
author | Ulrich Ölmann <u.oelmann@pengutronix.de> | 2024-06-21 08:42:19 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-06-25 11:50:58 +0100 |
commit | 8de3508743a147f65cd44b9abc6abccfeaeae929 (patch) | |
tree | 3d3d60c0f8b70eb683d49eda3e04d49f93453696 /meta/recipes-core | |
parent | 8e40d3933eaf3e44c99f49d170ef597abd61cf2c (diff) | |
download | poky-8de3508743a147f65cd44b9abc6abccfeaeae929.tar.gz |
initramfs-framework: fix typos
Fix typos in debugging and error messages.
(From OE-Core rev: 4995e222ebdc9b5508c2f03a11868f184e4629a0)
Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rwxr-xr-x | meta/recipes-core/initrdscripts/initramfs-framework/init | 2 | ||||
-rw-r--r-- | meta/recipes-core/initrdscripts/initramfs-framework/rootfs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/init b/meta/recipes-core/initrdscripts/initramfs-framework/init index e3d8caa0e1..716a156f82 100755 --- a/meta/recipes-core/initrdscripts/initramfs-framework/init +++ b/meta/recipes-core/initrdscripts/initramfs-framework/init | |||
@@ -120,7 +120,7 @@ if grep -q devtmpfs /proc/filesystems; then | |||
120 | mount -t devtmpfs devtmpfs /dev | 120 | mount -t devtmpfs devtmpfs /dev |
121 | else | 121 | else |
122 | if [ ! -d /dev ]; then | 122 | if [ ! -d /dev ]; then |
123 | fatal "ERROR: /dev doesn't exist and kernel doesn't has devtmpfs enabled." | 123 | fatal "ERROR: /dev doesn't exist and kernel doesn't have devtmpfs enabled." |
124 | fi | 124 | fi |
125 | fi | 125 | fi |
126 | 126 | ||
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/rootfs b/meta/recipes-core/initrdscripts/initramfs-framework/rootfs index e0efbe6ebe..38e138f618 100644 --- a/meta/recipes-core/initrdscripts/initramfs-framework/rootfs +++ b/meta/recipes-core/initrdscripts/initramfs-framework/rootfs | |||
@@ -59,7 +59,7 @@ rootfs_run() { | |||
59 | fi | 59 | fi |
60 | fi | 60 | fi |
61 | fi | 61 | fi |
62 | debug "Sleeping for $delay second(s) to wait root to settle..." | 62 | debug "Sleeping for $delay second(s) to wait for root to settle..." |
63 | sleep $delay | 63 | sleep $delay |
64 | C=$(( $C + 1 )) | 64 | C=$(( $C + 1 )) |
65 | done | 65 | done |