Copying gfxboot theme when building for Ubuntu.

This commit is contained in:
Colin Watson 2011-09-30 12:04:33 +02:00 committed by Daniel Baumann
parent 96e86b96d8
commit 5b7adeab62
1 changed files with 19 additions and 0 deletions

View File

@ -53,6 +53,12 @@ case "${LB_BUILD_WITH_CHROOT}" in
Check_package chroot/usr/bin/syslinux syslinux
Check_package chroot/usr/share/syslinux/themes/${LB_SYSLINUX_THEME} syslinux-themes-${LB_SYSLINUX_THEME}
case "${LB_MODE}" in
ubuntu)
Check_package chroot/usr/share/gfxboot-theme-ubuntu/bootlogo.tar.gz gfxboot-theme-ubuntu
;;
esac
# Restoring cache
Restore_cache cache/packages_binary
@ -86,12 +92,25 @@ case "${LB_BUILD_WITH_CHROOT}" in
true)
# Copy in two steps since the theme can have absolute symlinks and would therefore not be dereferenced correctly
Chroot chroot "cp -aL /usr/share/syslinux/themes/${LB_SYSLINUX_THEME}/${_BOOTLOADER}-live /root/tmp"
case "${LB_MODE}" in
ubuntu)
Chroot chroot "tar xfz /usr/share/gfxboot-theme-ubuntu/bootlogo.tar.gz -C /root/tmp"
;;
esac
mv chroot/root/tmp/* ${_SUFFIX}
rmdir chroot/root/tmp
;;
false)
cp -aL /usr/share/syslinux/themes/${LB_SYSLINUX_THEME}/${_BOOTLOADER}-live/* ${_SUFFIX}
case "${LB_MODE}" in
ubuntu)
tar xfz /usr/share/gfxboot-theme-ubuntu/bootlogo.tar.gz -C ${_SUFFIX}
;;
esac
;;
esac