From: Daniel Kahn Gillmor Date: Fri, 13 Nov 2009 07:41:55 +0000 (-0500) Subject: abstracted out some of the pieces of the d-i maker X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=933cb912d13c21ef628f1302723988753bc69e7b;p=kvm-manager.git abstracted out some of the pieces of the d-i maker --- diff --git a/di-maker b/di-maker index e0311a6..c213c2b 100755 --- a/di-maker +++ b/di-maker @@ -12,6 +12,9 @@ set -e output="$1" +SUITE=${SUITE:-stable} +ARCH=${ARCH:-amd64} + if [ -z "$output" ] ; then printf "you must specify a file name for the image to be built" >&2 exit 1 @@ -31,7 +34,7 @@ cleanup() { trap cleanup EXIT -( cd "$WORKDIR" && wget http://ftp.nl.debian.org/debian/dists/lenny/main/installer-amd64/current/images/netboot/debian-installer/amd64/{linux,initrd.gz} ) +( cd "$WORKDIR" && wget http://ftp.nl.debian.org/debian/dists/"$SUITE"/main/installer-"$ARCH"/current/images/netboot/debian-installer/"$ARCH"/{linux,initrd.gz} ) mkdir -p "$WORKDIR/boot/grub" @@ -40,7 +43,7 @@ serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1 terminal_output serial terminal_input serial -menuentry "lenny d-i (created $(date -R))" { +menuentry "$SUITE d-i (created $(date -R))" { linux /linux verbose -- console=ttyS0,115200n8 initrd /initrd.gz }