diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-07 02:12:31 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-07 02:12:31 +0000 |
commit | 13de91fbb60952073cf1d070fb1692d968d8d9b1 (patch) | |
tree | 2b191e05c09e92d381c6750c045ce664906636bd /perl-install/install_steps_interactive.pm | |
parent | dbba4bdb651ed70c3b76b570f49516a9426dd0cf (diff) | |
download | drakx-13de91fbb60952073cf1d070fb1692d968d8d9b1.tar drakx-13de91fbb60952073cf1d070fb1692d968d8d9b1.tar.gz drakx-13de91fbb60952073cf1d070fb1692d968d8d9b1.tar.bz2 drakx-13de91fbb60952073cf1d070fb1692d968d8d9b1.tar.xz drakx-13de91fbb60952073cf1d070fb1692d968d8d9b1.zip |
- move configure_pcmcia() and write_pcmcia() out of modules.pm to install_any.pm
- load pcmcia_core, $pcic and ds in one call to modules::load
- don't pass prefix to write_pcmcia()
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-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 92f4fa805..9be687103 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -223,7 +223,7 @@ sub setupSCSI { if (!$::noauto && arch() =~ /i.86/) { if ($o->{pcmcia} ||= !$::testing && c::pcmcia_probe()) { my $w = $o->wait_message(N("PCMCIA"), N("Configuring PCMCIA cards...")); - my $results = modules::configure_pcmcia($o->{pcmcia}); + my $results = install_any::configure_pcmcia($o->{pcmcia}); undef $w; $results and $o->ask_warn('', $results); } |