diff options
author | Anne Nicolas <ennael@mageia.org> | 2012-04-10 11:19:01 +0000 |
---|---|---|
committer | Anne Nicolas <ennael@mageia.org> | 2012-04-10 11:19:01 +0000 |
commit | 1dda838e465a7d957e1cd265f01d33c00932b586 (patch) | |
tree | 927d84ed269bfc4f53584ae55c3e2786e4857917 | |
parent | 470a6dc5125884954091c8bf8074674fdf97d091 (diff) | |
download | drakx-1dda838e465a7d957e1cd265f01d33c00932b586.tar drakx-1dda838e465a7d957e1cd265f01d33c00932b586.tar.gz drakx-1dda838e465a7d957e1cd265f01d33c00932b586.tar.bz2 drakx-1dda838e465a7d957e1cd265f01d33c00932b586.tar.xz drakx-1dda838e465a7d957e1cd265f01d33c00932b586.zip |
fix splash quiet option
-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 9816a92b1..c7546a125 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -1064,7 +1064,7 @@ sub suggest { root => $root, if_($options{vga_fb}, vga => $options{vga_fb}), #- using framebuffer if_($options{vga_fb} && $options{splash}, append => "splash"), - if_($options{quiet}, append => "quiet"), + if_($options{quiet}, append => "splash quiet"), }); if ($options{vga_fb} && $e->{label} eq 'linux') { |