diff options
Diffstat (limited to 'examples/hooks')
-rwxr-xr-x | examples/hooks/replace-di-banner.sh | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/examples/hooks/replace-di-banner.sh b/examples/hooks/replace-di-banner.sh index cd64cc1cd..9afcb9632 100755 --- a/examples/hooks/replace-di-banner.sh +++ b/examples/hooks/replace-di-banner.sh @@ -11,17 +11,21 @@ set -e -TARGET_INITRD="binary/install/gtk/initrd.gz" -REPACK_TMPDIR="unpacked-initrd" +if [ -e config/binary_debian-installer/banner.png ] +then + TARGET_INITRD="binary/install/gtk/initrd.gz" + REPACK_TMPDIR="binary.initrd" -# cpio does not have a "extract to directory", so we must change directory -mkdir -p ${REPACK_TMPDIR} -cd ${REPACK_TMPDIR} -gzip -d < ../${TARGET_INITRD} | cpio -i --make-directories --no-absolute-filenames + # cpio does not have a "extract to directory", so we must change + # directory + mkdir -p ${REPACK_TMPDIR} + cd ${REPACK_TMPDIR} + gzip -d < ../${TARGET_INITRD} | cpio -i --make-directories --no-absolute-filenames -# Overwrite banner -mv ../binary/install/banner.png ./usr/share/graphics/logo_debian.png + # Overwrite banner + cp ../config/binary_debian-installer/banner.png ./usr/share/graphics/logo_debian.png -find | cpio -H newc -o | gzip -9 > ../${TARGET_INITRD} -cd .. -rm -rf ${REPACK_TMPDIR} + find | cpio -H newc -o | gzip -9 > ../${TARGET_INITRD} + cd .. + rm -rf ${REPACK_TMPDIR} +fi |