diff options
Diffstat (limited to 'make_boot_img')
-rwxr-xr-x | make_boot_img | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/make_boot_img b/make_boot_img index 8ec17c7f1..87413b8e9 100755 --- a/make_boot_img +++ b/make_boot_img @@ -85,7 +85,11 @@ sub msg_boot_img { my ($mnt, $img) = @_; __ "$sudo umount $mnt 2>/dev/null"; - _ "bunzip2 -c $instdir/installinit/msgboot.img.bz2 > $img"; + if ($type eq "hd") { + _ "bunzip2 -c $instdir/installinit/msgboot.img.bz2 > $img"; + } else { + _ "bunzip2 -c $instdir/installinit/msgboot-graphicallogo.img.bz2 > $img"; + } _ "$sudo mount -t msdos -o umask=0 $img $mnt -o loop"; _ "cat vmlinuz > $mnt/vmlinuz"; initrd("${mnt}2", "$mnt/$type.rdz"); |