diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-02-11 21:34:52 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-02-11 21:34:52 +0000 |
commit | 2f0511d1695abf895b3a215408bca6bbbde50cdd (patch) | |
tree | d00040353c8696b8bb14158c3e6a31c24177efce /images/make_boot_img | |
parent | 447da30d916eb8a6e0962974e0bbef9ebe0fb713 (diff) | |
download | drakx-2f0511d1695abf895b3a215408bca6bbbde50cdd.tar drakx-2f0511d1695abf895b3a215408bca6bbbde50cdd.tar.gz drakx-2f0511d1695abf895b3a215408bca6bbbde50cdd.tar.bz2 drakx-2f0511d1695abf895b3a215408bca6bbbde50cdd.tar.xz drakx-2f0511d1695abf895b3a215408bca6bbbde50cdd.zip |
s/bootspash_cfg/bootsplash_cfg/ (cosmetics)
Diffstat (limited to 'images/make_boot_img')
-rwxr-xr-x | images/make_boot_img | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/images/make_boot_img b/images/make_boot_img index 6142051ae..66886ae5f 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -686,13 +686,13 @@ sub syslinux_all_files { $default_vga =~ /788/ or die 'we rely on vga=788 for bootsplash'; my $theme = $ENV{THEME} || 'Mandriva-Free'; - my $bootspash_cfg = "/etc/bootsplash/themes/$theme/config/bootsplash-800x600.cfg"; - -e $bootspash_cfg or die "can't find $bootspash_cfg"; + my $bootsplash_cfg = "/etc/bootsplash/themes/$theme/config/bootsplash-800x600.cfg"; + -e $bootsplash_cfg or die "can't find $bootsplash_cfg"; each_index { mkdir "$dir/alt$::i", 0777; _ "cp all.kernels/$_/vmlinuz $dir/alt$::i"; - initrd('all', '', "images/all.rdz-$_", $bootspash_cfg); + initrd('all', '', "images/all.rdz-$_", $bootsplash_cfg); rename("images/all.rdz-$_", "$dir/alt$::i/all.rdz"); } @$kernels; |