From 4b3500c5b2b6c4c54d3d3108cf70a8a2d1cc9f70 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Sat, 11 Dec 2010 20:25:24 -0500 Subject: accept preseed files in di-maker --- di-maker | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'di-maker') diff --git a/di-maker b/di-maker index 5a6d69c..7ce9131 100755 --- a/di-maker +++ b/di-maker @@ -12,6 +12,10 @@ set -e output="$1" +# optionally specify the second argument as a preseed file: + +preseed="$2" + SUITE=${SUITE:-stable} ARCH=${ARCH:-amd64} DISTRO=${DISTRO:-debian} @@ -26,6 +30,15 @@ if [ -e "$output" ] ; then exit 1 fi +preseed_args='' +if [ "$preseed" ] ; then + if ! [ -r "$preseed" ] ; then + printf "could not read preseed file '%s'\n" "$preseed" >&2 + exit 1 + fi + checksum=$(md5sum - < "$preseed" | cut -f1 -d\ ) + preseed_args="preseed/file=/cdrom/preseed.cfg preseed/file/checksum=$checksum" +fi WORKDIR=$(mktemp -d) @@ -47,7 +60,7 @@ esac KERNEL=linux INITRAMFS=initrd.gz BOOTINSTRUCTIONS=" - linux /$KERNEL verbose -- console=ttyS0,115200n8 + linux /$KERNEL verbose $preseed_args -- console=ttyS0,115200n8 initrd /$INITRAMFS " @@ -74,6 +87,10 @@ esac ( cd "$WORKDIR" && wget "$BASEPATH"/{$KERNEL,$INITRAMFS} ) +if [ "$preseed" ]; then + cp "$preseed" "${WORKDIR}/preseed.cfg" +fi + mkdir -p "$WORKDIR/boot/grub" -- cgit v1.2.3