diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-05-12 07:37:49 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-05-12 07:37:49 +0000 |
commit | 1339499185ee4ff0523111ba59743f64eac9d697 (patch) | |
tree | 1c8eb4f6b5c73fa6bf54472a04798cf2523d7f84 /perl-install | |
parent | c9d0287734e7c36d3594392157ce995da991f337 (diff) | |
download | drakx-1339499185ee4ff0523111ba59743f64eac9d697.tar drakx-1339499185ee4ff0523111ba59743f64eac9d697.tar.gz drakx-1339499185ee4ff0523111ba59743f64eac9d697.tar.bz2 drakx-1339499185ee4ff0523111ba59743f64eac9d697.tar.xz drakx-1339499185ee4ff0523111ba59743f64eac9d697.zip |
forward fix SATA & hw RAID detection by detecting them pior to PATA detection
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/harddrake/data.pm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index 0bbe76556..758f53d1d 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -284,16 +284,6 @@ our @tree = checked_on_boot => 0, }, - - { - class => "ATA_STORAGE", - string => N("(E)IDE/ATA controllers"), - icon => "ide_hd.png", - configurator => "", - detector => sub { f(grep { $_->{media_type} =~ /STORAGE_(IDE|OTHER)/ } @devices) }, - checked_on_boot => 1, - }, - { class => "SATA_STORAGE", string => N("SATA controllers"), @@ -321,6 +311,16 @@ our @tree = }, { + class => "ATA_STORAGE", + string => N("(E)IDE/ATA controllers"), + icon => "ide_hd.png", + configurator => "", + detector => sub { f(grep { $_->{media_type} =~ /STORAGE_(IDE|OTHER)/ } @devices) }, + checked_on_boot => 1, + }, + + + { class => "FIREWIRE_CONTROLLER", string => N("Firewire controllers"), icon => "usb.png", |