diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-07-31 16:33:23 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-07-31 16:33:23 +0000 |
commit | 31c9dac9d75a15badeb2424b128dfe0b960b0206 (patch) | |
tree | ba7b915ec7ce34fda013449f7f50a4706056eb4a | |
parent | 2a56adde030abbd5842cd034f712f92849a20bf4 (diff) | |
download | drakx-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)
-rw-r--r-- | perl-install/bootloader.pm | 2 |
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' }); |