diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-09-12 16:39:14 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-09-12 16:39:14 +0000 |
commit | dff746444b3fc778dbf9f818cc3247161548cebe (patch) | |
tree | 557dc643599c3d6a71beecbe82384fd880f4094a /perl-install/any.pm | |
parent | 8adabacd95f6a4455027f00084e39958fada6083 (diff) | |
download | drakx-dff746444b3fc778dbf9f818cc3247161548cebe.tar drakx-dff746444b3fc778dbf9f818cc3247161548cebe.tar.gz drakx-dff746444b3fc778dbf9f818cc3247161548cebe.tar.bz2 drakx-dff746444b3fc778dbf9f818cc3247161548cebe.tar.xz drakx-dff746444b3fc778dbf9f818cc3247161548cebe.zip |
no_comment
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 476b1b2ef..a54cc115e 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -406,20 +406,19 @@ sub miscellaneousNetwork { } sub load_thiskind { - my ($in, $type, $pcmcia) = @_; - my $pcmcia2 = $pcmcia if modules::pcmcia_need_config($pcmcia) && !$::noauto; - my $w; $w = $in->wait_message(_("PCMCIA"), _("Configuring PCMCIA cards...")) if $pcmcia2; - modules::load_thiskind($type, $pcmcia2, sub { $w = wait_load_module($in, $type, @_) }); + my ($in, $type) = @_; + my $w; + modules::load_thiskind($type, sub { $w = wait_load_module($in, $type, @_) }); } sub setup_thiskind { - my ($in, $type, $auto, $at_least_one, $pcmcia) = @_; + my ($in, $type, $auto, $at_least_one) = @_; return if arch() eq "ppc"; my @l; if (!$::noauto) { - @l = load_thiskind($in, $type, $pcmcia); + @l = load_thiskind($in, $type); if (my @err = grep { $_ } map { $_->{error} } @l) { $in->ask_warn('', join("\n", @err)); } |