Update the device startup script check for udev to work even if udevd isnt running...
authorChris Larson <clarson@kergoth.com>
Thu, 4 Nov 2004 00:43:12 +0000 (00:43 +0000)
committerChris Larson <clarson@kergoth.com>
Thu, 4 Nov 2004 00:43:12 +0000 (00:43 +0000)
BKrev: 41897b20M85ujTkF6L_JH_Ivtmfv0Q

initscripts/initscripts-1.0/devices
initscripts/initscripts_1.0.oe

index 7bb5901..59ce1f6 100644 (file)
@@ -6,7 +6,7 @@
 . /etc/default/rcS
 
 # exit without doing anything if udev is active
-if test -x /bin/pidof -a "`pidof udevd`" != ""; then
+if test -e /dev/.udev.tdb; then
        exit 0
 fi
 
index 7141966..98ea832 100644 (file)
@@ -4,7 +4,7 @@ SECTION = "base"
 PRIORITY = "required"
 DEPENDS = "makedevs"
 RDEPENDS = "makedevs"
-PR = "r16"
+PR = "r17"
 
 SRC_URI = "file://halt \
            file://ramdisk \