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>
This commit is contained in:
Ulrich Ölmann
2024-06-21 08:42:19 +02:00
committed by Richard Purdie
parent 8e40d3933e
commit 8de3508743
2 changed files with 2 additions and 2 deletions

View File

@@ -120,7 +120,7 @@ if grep -q devtmpfs /proc/filesystems; then
mount -t devtmpfs devtmpfs /dev
else
if [ ! -d /dev ]; then
fatal "ERROR: /dev doesn't exist and kernel doesn't has devtmpfs enabled."
fatal "ERROR: /dev doesn't exist and kernel doesn't have devtmpfs enabled."
fi
fi

View File

@@ -59,7 +59,7 @@ rootfs_run() {
fi
fi
fi
debug "Sleeping for $delay second(s) to wait root to settle..."
debug "Sleeping for $delay second(s) to wait for root to settle..."
sleep $delay
C=$(( $C + 1 ))
done