[SCM] live-build branch, debian, updated. debian/3.0_a53-1

Daniel Baumann daniel at debian.org
Thu Jul 19 02:17:54 UTC 2012


The following commit has been merged in the debian branch:
commit fed66eda2a8b76863aaed877b01079d6d097aa75
Author: Daniel Baumann <daniel at debian.org>
Date:   Thu Jul 19 03:17:12 2012 +0200

    Removing debian-installer-banner.binary example hook, this can be done through config/includes.binary_debian-installer directly.

diff --git a/examples/hooks/debian-installer-banner.binary b/examples/hooks/debian-installer-banner.binary
deleted file mode 100755
index 61c160c..0000000
--- a/examples/hooks/debian-installer-banner.binary
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-
-# This is an binary hook for live-build(7) to overwrite the banner
-# in the graphical Debian Installer.
-# To enable it, copy or symlink this hook into your config/binary_local-hooks
-# directory and add a replacement banner.png at:
-#
-#  config/binary_debian-installer/banner.png
-#
-# The file should be a PNG image of dimensions 800 x 75.
-
-set -e
-
-if [ -e config/binary_debian-installer/banner.png ]
-then
-	TARGET_INITRD="binary/install/gtk/initrd.gz"
-	REPACK_TMPDIR="binary.initrd"
-
-	if [ -e "${TARGET_INITRD}" ]
-	then
-		# 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
-		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}
-	fi
-fi

-- 
live-build



More information about the debian-live-changes mailing list