summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/service_harddrake
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-09-06 02:44:15 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-09-06 02:44:15 +0000
commitfe1822dc5f8d78dc5696c274cf114473efd5584e (patch)
treebc1c95246a1107692c654a9ee7a8d4ce8f8b4c4a /perl-install/standalone/service_harddrake
parentf55cc79408ffe0be4c50ac72f5f9761c96a9d8c4 (diff)
downloaddrakx-fe1822dc5f8d78dc5696c274cf114473efd5584e.tar
drakx-fe1822dc5f8d78dc5696c274cf114473efd5584e.tar.gz
drakx-fe1822dc5f8d78dc5696c274cf114473efd5584e.tar.bz2
drakx-fe1822dc5f8d78dc5696c274cf114473efd5584e.tar.xz
drakx-fe1822dc5f8d78dc5696c274cf114473efd5584e.zip
add module for storage controllers that are not compiled built-in in kernel
Diffstat (limited to 'perl-install/standalone/service_harddrake')
-rwxr-xr-xperl-install/standalone/service_harddrake4
1 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake
index 8cf58da6e..1b241b8cb 100755
--- a/perl-install/standalone/service_harddrake
+++ b/perl-install/standalone/service_harddrake
@@ -119,7 +119,7 @@ foreach my $hw_class (@harddrake::data::tree) {
require network::ethernet;
network::ethernet::configure_eth_aliases($modules_conf);
$modules_conf->write;
- } elsif ($Ident eq "AGP") {
+ } elsif (member($Ident qw(AGP ATA_STORAGE SATA_STORAGE SCSI_CONTROLLER TV)) {
# add agpgart modules to modprobe.preload if needed:
$modules_conf->write;
} elsif ($Ident eq "USB_CONTROLLER") {
@@ -129,8 +129,6 @@ foreach my $hw_class (@harddrake::data::tree) {
require harddrake::autoconf;
harddrake::autoconf::xconf($modules_conf, {});
next;
- } elsif ($Ident eq "TV") {
- $modules_conf->write;
}
next if $is_globetrotter && !$hw_class->{automatic};