summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2007-08-21 14:46:48 +0000
committerOlivier Blin <oblin@mandriva.com>2007-08-21 14:46:48 +0000
commit50a4988ce2ef7000b220d2395dc6a45e5f478cfd (patch)
treec0c5d9cfd7f4bf4f3740da5bbbe7814925e22ca4 /perl-install/detect_devices.pm
parent830a2579e35f1ba8b4963ae5d05cff46baf7142c (diff)
downloaddrakx-50a4988ce2ef7000b220d2395dc6a45e5f478cfd.tar
drakx-50a4988ce2ef7000b220d2395dc6a45e5f478cfd.tar.gz
drakx-50a4988ce2ef7000b220d2395dc6a45e5f478cfd.tar.bz2
drakx-50a4988ce2ef7000b220d2395dc6a45e5f478cfd.tar.xz
drakx-50a4988ce2ef7000b220d2395dc6a45e5f478cfd.zip
use usb_storage instead of usb-storage
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index b706d76da..b58768f95 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -63,7 +63,7 @@ sub floppies {
my @ide = ls120s() and eval { modules::load("ide-floppy") };
- eval { modules::load("usb-storage") } if $::isInstall && usbStorage();
+ eval { modules::load("usb_storage") } if $::isInstall && usbStorage();
my @scsi = grep { $_->{media_type} eq 'fd' } getSCSI();
@ide, @scsi, @fds;
}