summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-11-21 14:54:53 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-11-21 14:54:53 +0000
commit34be445681c8dc42b73e95b80464ebad33503e8e (patch)
treea0b7a8d1f57a339195ca6e2cc17d0dde80e63f07 /perl-install/install_steps_interactive.pm
parent06e0bdfe68920691681c0db04f31dc1c90fdad98 (diff)
downloaddrakx-backup-do-not-use-34be445681c8dc42b73e95b80464ebad33503e8e.tar
drakx-backup-do-not-use-34be445681c8dc42b73e95b80464ebad33503e8e.tar.gz
drakx-backup-do-not-use-34be445681c8dc42b73e95b80464ebad33503e8e.tar.bz2
drakx-backup-do-not-use-34be445681c8dc42b73e95b80464ebad33503e8e.tar.xz
drakx-backup-do-not-use-34be445681c8dc42b73e95b80464ebad33503e8e.zip
migrate pcmcia in drakx to use in-kernel version (only
for 2.4, though --> pcmcia in 2.2 no longer supported)
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 5ad33d267..e34187bad 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -289,7 +289,9 @@ sub setupSCSI {
if (!$::noauto && arch() =~ /i.86/) {
if ($o->{pcmcia} ||= !$::testing && c::pcmcia_probe()) {
my $w = $o->wait_message(_("PCMCIA"), _("Configuring PCMCIA cards..."));
- modules::configure_pcmcia($o->{pcmcia});
+ my $results = modules::configure_pcmcia($o->{pcmcia});
+ $w = undef;
+ $results and $o->ask_warn('', $results);
}
}
{