diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-05-09 12:20:48 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-05-09 12:20:48 +0000 |
commit | 00aaaee854a93d4d665ff8d89058641d93825afb (patch) | |
tree | 160dee2e368976a20ceffaa199a24ad23a1d2e4d /perl-install | |
parent | 7e74140e309b3552382e79d3253af2a3eaf720c0 (diff) | |
download | drakx-00aaaee854a93d4d665ff8d89058641d93825afb.tar drakx-00aaaee854a93d4d665ff8d89058641d93825afb.tar.gz drakx-00aaaee854a93d4d665ff8d89058641d93825afb.tar.bz2 drakx-00aaaee854a93d4d665ff8d89058641d93825afb.tar.xz drakx-00aaaee854a93d4d665ff8d89058641d93825afb.zip |
use default jpeg image path in config file for both silent and verbose images
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/bootsplash.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/bootsplash.pm b/perl-install/bootsplash.pm index 63528e480..86d78e4fc 100644 --- a/perl-install/bootsplash.pm +++ b/perl-install/bootsplash.pm @@ -112,6 +112,7 @@ sub theme_write_config_for_resolution { my $config = theme_get_config_for_resolution($name, $res); create_path($config); + my $jpeg = theme_get_image_for_resolution($name, $res); output($config, qq(# This is the configuration file for the $res bootsplash picture # this file is necessary to specify the coordinates of the text box on the @@ -136,8 +137,8 @@ tw=$conf->{tw} th=$conf->{th} # name of the picture file (full path recommended) -jpeg=$conf->{jpeg} -silentjpeg=$conf->{silentjpeg} +jpeg=$jpeg +silentjpeg=$jpeg progress_enable=1 |