diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-03-25 13:46:20 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-03-25 13:46:20 +0000 |
commit | 02d70c3d3394ee53035fdde5cbf3a7963554e2eb (patch) | |
tree | c8425f45bfea87122ead2ba68908e5f453a284e0 | |
parent | 75f8d38e3fa589b8714a3376d61f5b2719489108 (diff) | |
download | drakx-backup-do-not-use-02d70c3d3394ee53035fdde5cbf3a7963554e2eb.tar drakx-backup-do-not-use-02d70c3d3394ee53035fdde5cbf3a7963554e2eb.tar.gz drakx-backup-do-not-use-02d70c3d3394ee53035fdde5cbf3a7963554e2eb.tar.bz2 drakx-backup-do-not-use-02d70c3d3394ee53035fdde5cbf3a7963554e2eb.tar.xz drakx-backup-do-not-use-02d70c3d3394ee53035fdde5cbf3a7963554e2eb.zip |
(load_category__prompt_for_more) enable one to load ide drivers if needed
-rw-r--r-- | perl-install/modules/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules/interactive.pm b/perl-install/modules/interactive.pm index 39fcdda4d..fb4bcfda2 100644 --- a/perl-install/modules/interactive.pm +++ b/perl-install/modules/interactive.pm @@ -66,7 +66,7 @@ sub load_category__prompt_for_more { my $r = 'No'; $in->ask_from_({ messages => $msg, - if_($category =~ m!disk/.*(sata|scsi|hardware_raid|usb|firewire)!, interactive_help_id => 'setupSCSI'), + if_($category =~ m!disk/.*(ide|sata|scsi|hardware_raid|usb|firewire)!, interactive_help_id => 'setupSCSI'), }, [ { list => [ N_("Yes"), N_("No"), N_("See hardware info") ], val => \$r, type => 'list', format => \&translate } ]); if ($r eq "No") { return @l } |