diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-09-06 02:44:15 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-09-06 02:44:15 +0000 |
commit | fe1822dc5f8d78dc5696c274cf114473efd5584e (patch) | |
tree | bc1c95246a1107692c654a9ee7a8d4ce8f8b4c4a /perl-install/harddrake | |
parent | f55cc79408ffe0be4c50ac72f5f9761c96a9d8c4 (diff) | |
download | drakx-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/harddrake')
-rw-r--r-- | perl-install/harddrake/data.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index 058f0eab5..f0add06a9 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -290,7 +290,7 @@ our @tree = icon => "ide_hd.png", configurator => "", detector => sub { f(grep { $_->{media_type} =~ /STORAGE_(IDE|OTHER)/ || $_->{driver} eq '3w-xxxx' } @devices) }, - checked_on_boot => 0, + checked_on_boot => 1, }, { @@ -299,7 +299,7 @@ our @tree = icon => "ide_hd.png", configurator => "", detector => sub { f(grep { $_->{driver} =~ /^sata/ } @devices) }, - checked_on_boot => 0, + checked_on_boot => 1, }, { @@ -330,7 +330,7 @@ our @tree = icon => "scsi.png", configurator => "", detector => sub { f(grep { $_->{media_type} =~ /STORAGE_SCSI/ || $_->{driver} eq 'megaraid' } @devices) }, - checked_on_boot => 0, + checked_on_boot => 1, }, { |