diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-09-26 09:31:57 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-09-26 09:31:57 +0000 |
commit | 832ba3936e688635bfbbdada9b07e30f2b0eb827 (patch) | |
tree | 87c53c824da81571892550cc9be2862e27981df1 /perl-install/modules.pm | |
parent | 5f6c3435118f551f246889de4a1f7bf86db78bcc (diff) | |
download | drakx-832ba3936e688635bfbbdada9b07e30f2b0eb827.tar drakx-832ba3936e688635bfbbdada9b07e30f2b0eb827.tar.gz drakx-832ba3936e688635bfbbdada9b07e30f2b0eb827.tar.bz2 drakx-832ba3936e688635bfbbdada9b07e30f2b0eb827.tar.xz drakx-832ba3936e688635bfbbdada9b07e30f2b0eb827.zip |
- never add usb-storage to scsi_hostadapter
(never needed, and when wrongly added, it slows the boot)
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 74fe8707d..af6a10aa3 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -258,7 +258,7 @@ sub when_load_category { if ($category =~ m,disk/ide,) { $conf->add_probeall('ide-controller', $name); eval { load('ide_disk') }; - } elsif ($category =~ m,disk/(scsi|hardware_raid|sata|usb|firewire),) { + } elsif ($category =~ m,disk/(scsi|hardware_raid|sata|firewire),) { $conf->add_probeall('scsi_hostadapter', $name); eval { load('sd_mod') }; } elsif ($category eq 'bus/usb') { |