summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2000-09-12 16:39:14 +0000
committerPascal Rigaux <pixel@mandriva.com>2000-09-12 16:39:14 +0000
commitdff746444b3fc778dbf9f818cc3247161548cebe (patch)
tree557dc643599c3d6a71beecbe82384fd880f4094a /perl-install/any.pm
parent8adabacd95f6a4455027f00084e39958fada6083 (diff)
downloaddrakx-backup-do-not-use-dff746444b3fc778dbf9f818cc3247161548cebe.tar
drakx-backup-do-not-use-dff746444b3fc778dbf9f818cc3247161548cebe.tar.gz
drakx-backup-do-not-use-dff746444b3fc778dbf9f818cc3247161548cebe.tar.bz2
drakx-backup-do-not-use-dff746444b3fc778dbf9f818cc3247161548cebe.tar.xz
drakx-backup-do-not-use-dff746444b3fc778dbf9f818cc3247161548cebe.zip
no_comment
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r--perl-install/any.pm11
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));
}