udev: use 'echo' instead of 'echo -n' in init script

Avoid using two stage progress output to avoid text garbage during
parallel boot.

(From OE-Core rev: 7b3912883acaf4539d5d9cb974330778b6c85340)

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Otavio Salvador
2012-01-04 22:30:47 -08:00
committed by Richard Purdie
parent 352b9120a6
commit 53efd43855
2 changed files with 2 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ kill_udevd() {
export ACTION=add export ACTION=add
# propagate /dev from /sys # propagate /dev from /sys
echo -n "Starting udev" echo "Starting udev"
# mount the tmpfs on /dev, if not already done # mount the tmpfs on /dev, if not already done
LANG=C awk '$2 == "/dev" && ($3 == "tmpfs" || $3 == "devtmpfs") { exit 1 }' /proc/mounts && { LANG=C awk '$2 == "/dev" && ($3 == "tmpfs" || $3 == "devtmpfs") { exit 1 }' /proc/mounts && {
@@ -55,5 +55,4 @@ else
/sbin/udevadm settle /sbin/udevadm settle
fi fi
echo
exit 0 exit 0

View File

@@ -1,6 +1,6 @@
include udev.inc include udev.inc
PR = "r8" PR = "r10"
SRC_URI += "file://udev-166-v4l1-1.patch" SRC_URI += "file://udev-166-v4l1-1.patch"