summaryrefslogtreecommitdiffstats
path: root/perl-install/bootloader.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-07-31 16:33:23 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-07-31 16:33:23 +0000
commit31c9dac9d75a15badeb2424b128dfe0b960b0206 (patch)
treeba7b915ec7ce34fda013449f7f50a4706056eb4a /perl-install/bootloader.pm
parent2a56adde030abbd5842cd034f712f92849a20bf4 (diff)
downloaddrakx-31c9dac9d75a15badeb2424b128dfe0b960b0206.tar
drakx-31c9dac9d75a15badeb2424b128dfe0b960b0206.tar.gz
drakx-31c9dac9d75a15badeb2424b128dfe0b960b0206.tar.bz2
drakx-31c9dac9d75a15badeb2424b128dfe0b960b0206.tar.xz
drakx-31c9dac9d75a15badeb2424b128dfe0b960b0206.zip
use "splash=silent" instead of "quiet".
kernel messages will still be written, but will be hidden (can be seen if pressing F2 or escape at boot time)
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r--perl-install/bootloader.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index e26135772..b1588429e 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -570,7 +570,7 @@ wait %d seconds for default boot.
{
if_($options{vga_fb} && $ext eq '', vga => $options{vga_fb}), #- using framebuffer
});
- $entry->{append} .= " quiet" if $options{vga_fb} && $version !~ /smp|enterprise/ && $options{quiet};
+ $entry->{append} .= " splash=silent" if $options{vga_fb} && $version !~ /smp|enterprise/ && $options{quiet};
if ($options{vga_fb} && $ext eq '') {
add_kernel($bootloader, $version, $ext, $root, { label => 'linux-nonfb' });