diff options
author | greg@kroah.com <greg@kroah.com> | 2004-03-02 22:45:22 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:35:07 -0700 |
commit | 27abdb46ffb0d817888a75adeaf2c0a2e7d2c7a3 (patch) | |
tree | 6fbd06fd349d41bbbf4988b64d5e32eeacf61d52 /extras | |
parent | b5e0fc320850b7f04608e8e57f43f7ffbdd050a1 (diff) |
[PATCH] make start_udev use udevstart binary
Diffstat (limited to 'extras')
-rw-r--r-- | extras/start_udev | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/extras/start_udev b/extras/start_udev index 5a7bc63515..0212d4f8c1 100644 --- a/extras/start_udev +++ b/extras/start_udev @@ -88,7 +88,12 @@ mount -n -t ramfs none $udev_root export ACTION=add export UDEV_NO_SLEEP=1 echo "Creating initial udev device nodes:" -run_udev + +# You can use the shell scripts above by calling run_udev or execute udevstart +# which does the same thing, but much faster by not using shell. +# only comment out one of the following lines. +#run_udev +/sbin/udevstart echo "making extra nodes" make_extra_nodes |