diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-10 08:18:10 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-10 08:18:10 +0000 |
commit | 35c49864b4fa5241822fce42df2885d6d22281e3 (patch) | |
tree | a96a22969280ff1fb03fd8f59875e10182aea3db /perl-install | |
parent | a1509a98924fc99200089c266000c8e9c3733fa9 (diff) | |
download | drakx-35c49864b4fa5241822fce42df2885d6d22281e3.tar drakx-35c49864b4fa5241822fce42df2885d6d22281e3.tar.gz drakx-35c49864b4fa5241822fce42df2885d6d22281e3.tar.bz2 drakx-35c49864b4fa5241822fce42df2885d6d22281e3.tar.xz drakx-35c49864b4fa5241822fce42df2885d6d22281e3.zip |
don't drop "shade" and "viewport" lines (bugzilla #16372)
Diffstat (limited to 'perl-install')
-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 27a129fac..534dfe895 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -1288,7 +1288,7 @@ sub write_grub { { my @conf; - push @conf, map { "$_ $bootloader->{$_}" } grep { $bootloader->{$_} } qw(timeout color serial terminal); + push @conf, map { "$_ $bootloader->{$_}" } grep { $bootloader->{$_} } qw(timeout color serial shade terminal viewport); push @conf, map { $_ . ' ' . $file2grub->($bootloader->{$_}) } grep { $bootloader->{$_} } qw(splashimage); eval { |