diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2012-01-04 22:30:47 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-05 11:24:48 +0000 |
commit | 53efd43855a0532c00eb9575667314b1de37c77d (patch) | |
tree | 22a9d1c934a4c8133d22ecb1abb4d8396fd21348 /meta/recipes-core | |
parent | 352b9120a68a7cb27e8f202c1645fe41281a6517 (diff) | |
download | poky-53efd43855a0532c00eb9575667314b1de37c77d.tar.gz |
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>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/udev/udev/init | 3 | ||||
-rw-r--r-- | meta/recipes-core/udev/udev_164.bb | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/meta/recipes-core/udev/udev/init b/meta/recipes-core/udev/udev/init index d0d7e5d0e3..bfbac0d95d 100644 --- a/meta/recipes-core/udev/udev/init +++ b/meta/recipes-core/udev/udev/init | |||
@@ -25,7 +25,7 @@ kill_udevd() { | |||
25 | 25 | ||
26 | export ACTION=add | 26 | export ACTION=add |
27 | # propagate /dev from /sys | 27 | # propagate /dev from /sys |
28 | echo -n "Starting udev" | 28 | echo "Starting udev" |
29 | 29 | ||
30 | # mount the tmpfs on /dev, if not already done | 30 | # mount the tmpfs on /dev, if not already done |
31 | LANG=C awk '$2 == "/dev" && ($3 == "tmpfs" || $3 == "devtmpfs") { exit 1 }' /proc/mounts && { | 31 | LANG=C awk '$2 == "/dev" && ($3 == "tmpfs" || $3 == "devtmpfs") { exit 1 }' /proc/mounts && { |
@@ -55,5 +55,4 @@ else | |||
55 | /sbin/udevadm settle | 55 | /sbin/udevadm settle |
56 | fi | 56 | fi |
57 | 57 | ||
58 | echo | ||
59 | exit 0 | 58 | exit 0 |
diff --git a/meta/recipes-core/udev/udev_164.bb b/meta/recipes-core/udev/udev_164.bb index f952c907c1..6d71f4dc1b 100644 --- a/meta/recipes-core/udev/udev_164.bb +++ b/meta/recipes-core/udev/udev_164.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | include udev.inc | 1 | include udev.inc |
2 | 2 | ||
3 | PR = "r8" | 3 | PR = "r10" |
4 | 4 | ||
5 | SRC_URI += "file://udev-166-v4l1-1.patch" | 5 | SRC_URI += "file://udev-166-v4l1-1.patch" |
6 | 6 | ||