summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_interactive.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-10-08 15:57:49 +0000
committerThierry Vignaud <tv@mandriva.org>2008-10-08 15:57:49 +0000
commitd39e80b3472b0afc631a1f96f8063e5063a79e82 (patch)
tree64192997cddf93d787fedbc50eb4666f07553242 /perl-install/install/steps_interactive.pm
parentb4aa6f7a55c0df542355453bbb248b7d6bed8eff (diff)
downloaddrakx-d39e80b3472b0afc631a1f96f8063e5063a79e82.tar
drakx-d39e80b3472b0afc631a1f96f8063e5063a79e82.tar.gz
drakx-d39e80b3472b0afc631a1f96f8063e5063a79e82.tar.bz2
drakx-d39e80b3472b0afc631a1f96f8063e5063a79e82.tar.xz
drakx-d39e80b3472b0afc631a1f96f8063e5063a79e82.zip
(setupBootloaderBefore) warn that "preparing bootloader" can take some
time (eg: under vbox) (#43036) we could check that $o->{mouse}}{Protocol} eq 'vboxmouse' but it's simpler to just always say it
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 cf3bfacc8..ffcc4b03b 100644
--- a/perl-install/install/steps_interactive.pm
+++ b/perl-install/install/steps_interactive.pm
@@ -1039,7 +1039,9 @@ sub setRootPassword_addUser {
sub setupBootloaderBefore {
my ($o) = @_;
local $o->{pop_wait_messages} = 1;
- my $_w = $o->wait_message(N("Preparing bootloader..."), N("Preparing bootloader..."));
+ my $_w = $o->wait_message(N("Preparing bootloader..."), N("Preparing bootloader...") . "\n" .
+ N("Be patient, this may take a while...")
+ );
$o->SUPER::setupBootloaderBefore;
}