[oe-commits] Dongxiao Xu : udev: Fix udevd launch issue after system second boot

git version control git at git.openembedded.org
Thu Jun 9 14:42:04 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: 155a10287bbcac583d95325ab2a7b09e04bb4b90
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=155a10287bbcac583d95325ab2a7b09e04bb4b90

Author: Dongxiao Xu <dongxiao.xu at intel.com>
Date:   Thu Jun  9 08:55:14 2011 +0800

udev: Fix udevd launch issue after system second boot

"grep" command will return 1 if nothing is grepped, which will cause
the udevd daemon not working correctly.

This fixes [YOCTO #1146]

Signed-off-by: Dongxiao Xu <dongxiao.xu at intel.com>

---

 meta/recipes-core/udev/udev-164/init |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-core/udev/udev-164/init b/meta/recipes-core/udev/udev-164/init
index 1a8fca5..9ce95ee 100644
--- a/meta/recipes-core/udev/udev-164/init
+++ b/meta/recipes-core/udev/udev-164/init
@@ -35,7 +35,7 @@ LANG=C awk "\$2 == \"/dev\" && \$4 == \"tmpfs\" { exit 1 }" /proc/mounts && {
 }
 
 if [ -e /etc/dev.tar ]; then
-	(cd /; tar xf /etc/dev.tar 2>&1 | grep -v 'time stamp')
+	(cd /; tar xf /etc/dev.tar 2>&1 | grep -v 'time stamp' || true)
 	not_first_boot=1
 fi
 





More information about the Openembedded-commits mailing list