diff options
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/modules.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 514058794..790735dc8 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- never add usb-storage to scsi_hostadapter + (never needed, and when wrongly added, it slows the boot) - ensure DPMS screensaver is not triggered during install (it interacts badly with matchbox/compositing) (#44021) - generate /root/drakx/package_list.pl at end of install 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') { |