aboutsummaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2012-01-18 23:16:06 +0100
committerTom Gundersen <teg@jklm.no>2012-01-18 23:16:06 +0100
commita1aee1e3606f76965db4c4a6ed44d04686d64826 (patch)
tree51499987a1e6b7fe64042135c0be13d0b02c7f69 /functions
parent97f0cd6751e8d22c14d7492cdc2186cf41157ba6 (diff)
downloadinitscripts-a1aee1e3606f76965db4c4a6ed44d04686d64826.tar.xz
udev: don't override settle timeout
The Arch default was 30 but upstream default was 120. This caused problems when udev-177-3 introduced a 30 second timeout for broken kernel drivers. We don't want to do this kind of fiddling in initscripts, if there is a need for overriding the timeout this should be added upstream to udev.conf. My feeling is that this is a bad idea, as there are now at least three different kinds of timeouts at play in udev, and if they are set to something incompatible it will cause unneccesary problems. Signed-off-by: Tom Gundersen <teg@jklm.no>
Diffstat (limited to 'functions')
-rw-r--r--functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions b/functions
index 4c4d614..aad741a 100644
--- a/functions
+++ b/functions
@@ -357,7 +357,7 @@ udevd_modprobe() {
status "Loading User-specified Modules" modprobe -ab "${MODULES[@]}"
status "Waiting for UDev uevents to be processed" \
- udevadm settle --timeout=${UDEV_TIMEOUT:-30}
+ udevadm settle
run_hook "$1_udevsettled"