summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-01-20 19:12:48 +0000
committerThierry Vignaud <tv@mageia.org>2012-01-20 19:12:48 +0000
commitbc652fca0120181720fbe92fcfbb44076eadbb6b (patch)
treeba730f32946c5dcc18b6b49965280d0fd7b74dff /perl-install/modules.pm
parent232627e4ab2e268a0cb80947e2884f7afcedb869 (diff)
downloaddrakx-bc652fca0120181720fbe92fcfbb44076eadbb6b.tar
drakx-bc652fca0120181720fbe92fcfbb44076eadbb6b.tar.gz
drakx-bc652fca0120181720fbe92fcfbb44076eadbb6b.tar.bz2
drakx-bc652fca0120181720fbe92fcfbb44076eadbb6b.tar.xz
drakx-bc652fca0120181720fbe92fcfbb44076eadbb6b.zip
(load_raw) faster & safer waiting for end of USB modules
(thanks to now having udev)
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm11
1 files changed, 1 insertions, 10 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 53f70b055..6b3e90616 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -99,16 +99,7 @@ sub load_raw {
} elsif (member('usb_storage', @$l)) {
#- usb_storage is only modprobed when we know there is some scsi devices
#- so trying hard to wait for devices to be detected
-
- #- first sleep the minimum time usb-stor-scan takes
- sleep 5; #- 5 == /sys/module/usb_storage/parameters/delay_use
- # then wait for usb-stor-scan to complete
- my $retry = 0;
- while ($retry++ < 10) {
- fuzzy_pidofs('usb-stor-scan') or last;
- sleep 1;
- log::l("waiting for usb_storage devices to appear (retry = $retry)");
- }
+ run_program::run('udevadm', 'settle');
}
}
sub load_with_options {