diff options
-rw-r--r-- | perl-install/install_steps_interactive.pm | 1 | ||||
-rw-r--r-- | perl-install/modules.pm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 635f16a78..be3864306 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -786,6 +786,7 @@ sub load_thiskind { my $pcmcia = $o->{pcmcia} unless $::expert && modules::pcmcia_need_config($o->{pcmcia}) && $o->ask_yesorno('', _("Skip PCMCIA probing", 1)); + $w = $o->wait_message(_("PCMCIA"), _("Configuring PCMCIA cards...")) if modules::pcmcia_need_config($pcmcia); modules::load_thiskind($type, sub { $w = wait_load_module($o, $type, @_) }, $pcmcia); } diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 23607ae64..1760269a7 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -314,6 +314,7 @@ sub get_pcmcia_devices($$) { #- run cardmgr in foreground while it is configuring the card. run_program::run("cardmgr", "-f", "-m" ,"/modules"); + sleep(3); } foreach (cat_("/var/run/stab")) { |