From: Michael Prokop Date: Wed, 25 Apr 2012 14:30:02 +0000 (+0200) Subject: grml-live-remaster: Support mkisofs + genisoimage X-Git-Tag: v0.19.0~8 X-Git-Url: http://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=7419019f1ed1f386e8ac723604f100928d66d388 grml-live-remaster: Support mkisofs + genisoimage --- diff --git a/remaster/grml-live-remaster b/remaster/grml-live-remaster index 92ef074..d4970a6 100755 --- a/remaster/grml-live-remaster +++ b/remaster/grml-live-remaster @@ -41,7 +41,20 @@ if ! isgrmlcd ; then fi # make sure we have what we need {{{ -check4progs mkisofs stat || exit 1 +if check4progs mkisofs >/dev/null 2>&1 ; then + MKISO=mkisofs +fi + +if check4progs genisoimage >/dev/null 2>&1 ; then + MKISO=genisoimage +fi + +if [ -z "$MKISO" ] ; then + echo "Error: neither mkisofs nor genisoimage available. Exiting." >&2 + exit 1 +fi + +check4progs stat || exit 1 # allow overriding via environment: if [ -z "$MKSQUASHFS" ] ; then @@ -141,7 +154,7 @@ else ISOLINUX_BOOTCAT=boot.cat fi -mkisofs -b $ISOLINUX -no-emul-boot -c $ISOLINUX_BOOTCAT \ +$MKISO -b $ISOLINUX -no-emul-boot -c $ISOLINUX_BOOTCAT \ -boot-info-table -boot-load-size 4 -no-pad \ -l -r -J -o "$1" /remaster/iso # pad for partition table