diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-16 19:09:10 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-16 19:09:10 +0000 |
commit | 9f2281eb0ecd04f06c652c219e0f779733f807b0 (patch) | |
tree | 7d98bb7a785e3375c0d815d2dd0c9d8dbb5c90be | |
parent | 948a8014086f8370e47439947122644c64578d65 (diff) | |
download | drakx-backup-do-not-use-9f2281eb0ecd04f06c652c219e0f779733f807b0.tar drakx-backup-do-not-use-9f2281eb0ecd04f06c652c219e0f779733f807b0.tar.gz drakx-backup-do-not-use-9f2281eb0ecd04f06c652c219e0f779733f807b0.tar.bz2 drakx-backup-do-not-use-9f2281eb0ecd04f06c652c219e0f779733f807b0.tar.xz drakx-backup-do-not-use-9f2281eb0ecd04f06c652c219e0f779733f807b0.zip |
(setupSCSI): when "clicked", ask "Do you have any SCSI interfaces" instead
of assuming there is a SCSI interface and asking the driver name
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index e181ede09..1b832bca1 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -306,7 +306,7 @@ sub setupSCSI { my $w = $o->wait_message(_("IDE"), _("Configuring IDE")); modules::load_ide(); } - any::setup_thiskind($o, 'scsi|disk', !$::expert && !$clicked, $clicked, $o->{pcmcia}); + any::setup_thiskind($o, 'scsi|disk', !$::expert && !$clicked, 0, $o->{pcmcia}); install_interactive::tellAboutProprietaryModules($o) if !$clicked; } |