diff options
author | Chris Larson <clarson@kergoth.com> | 2004-10-13 20:32:07 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-10-13 20:32:07 +0000 |
commit | ab07e56981ce6048ee006ac1c7bfb6b767079fb6 (patch) | |
tree | 991e44b6877a2bfb323d0956e2d55055e54aa560 /initscripts/initscripts-1.0/devices | |
parent | 5622d90ad2d7c5233407592b3b5232ef933c21d3 (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into handhelds.org:/home/kergoth/code/packages
2004/10/13 20:37:34+01:00 (none)!pb
reorder initscripts to make devices and udev play better together
2004/10/13 20:36:40+01:00 (none)!pb
reorder initscripts to make devices and udev play better together
BKrev: 416d90c7BonEBv7zQf5T56t8D_tI3g
Diffstat (limited to 'initscripts/initscripts-1.0/devices')
-rw-r--r-- | initscripts/initscripts-1.0/devices | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/initscripts/initscripts-1.0/devices b/initscripts/initscripts-1.0/devices index 9820f363c6..141a60d59e 100644 --- a/initscripts/initscripts-1.0/devices +++ b/initscripts/initscripts-1.0/devices @@ -5,6 +5,11 @@ . /etc/default/rcS +# exit without doing anything if udev is active +if test -x /bin/pidof -a "`pidof udevd`" != "" then + exit 0 +fi + if test -e /dev/.devfsd then if test "$VERBOSE" != "no"; then echo -n "Setting up device links for devfs: "; fi |