[remaster/mcs] some fixes to complete artwork integration

This commit is contained in:
Fabio Erculiani
2010-11-04 23:33:21 +01:00
parent ab79906343
commit 341d0636a0
3 changed files with 8 additions and 2 deletions

View File

@@ -6,5 +6,11 @@ cp /sabayon/remaster/mcs/isolinux/back.jpg "${CDROOT_DIR}/isolinux/back.jpg" ||
# execute parent script
/sabayon/scripts/generic_pre_iso_script.sh MCS || exit 1
echo "Copying new kernel images over"
boot_kernel=$(find "${CHROOT_DIR}/boot" -name "kernel-*" | sort | head -n 1)
boot_ramfs=$(find "${CHROOT_DIR}/boot" -name "initramfs-*" | sort | head -n 1)
cp "${boot_kernel}" "${CDROOT_DIR}/boot/sabayon" || exit 1
cp "${boot_ramfs}" "${CDROOT_DIR}/boot/sabayon.igz" || exit 1
# Setup default splash theme
sed -i "s/theme:sabayon/theme:babel/g" "${CDROOT_DIR}/isolinux/isolinux.cfg" || exit 1