X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2iso;h=5f328046fbd95e14f6dd8be16c981a4cb1bde4a6;hp=d8f4be51cf184f6c88892e413f5a86284eb264c2;hb=HEAD;hpb=371c60ef53b067bb6fcada208a3efbc72050033c diff --git a/grml2iso b/grml2iso index d8f4be5..3e48688 100755 --- a/grml2iso +++ b/grml2iso @@ -1,29 +1,20 @@ #!/usr/bin/env bash # Filename: grml2iso # Purpose: create a multiboot grml ISO using grml2usb -# Authors: Michael Prokop , -# Thorsten Glaser +# Authors: Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2 or any later version. ################################################################################ +set -e -o pipefail + # make sure we have the sbin directories in our PATH to find grml2usb ootb PATH="${PATH}:/sbin:/usr/local/sbin:/usr/sbin" -# define function getfilesize before "set -e" {{{ - if stat --help >/dev/null 2>&1; then - getfilesize='stat -c %s' # GNU stat - else - getfilesize='stat -f %z' # BSD stat - fi -# }}} - # adjust variables if necessary through environment {{{ # path to the grml2usb script you'd like to use - [ -n "$GRML2USB" ] || GRML2USB='grml2usb' -# work directory for creating the filesystem - [ -n "$TMPDIR" ] && WRKDIR="${TMPDIR}/grml2iso.tmp" - [ -n "$WRKDIR" ] || WRKDIR='/tmp/grml2iso.tmp' +[ -n "$GRML2USB" ] || GRML2USB='grml2usb' + # support mkisofs as well as genisoimage if which xorriso >/dev/null 2>&1 ; then MKISOFS='xorriso -as mkisofs' @@ -43,8 +34,6 @@ fi # }}} # helper stuff {{{ - set -e - usage() { echo >&2 "Usage: $0 [OPTIONS] -o target.iso source1.iso [source2.iso ...]" echo >&2 " @@ -63,10 +52,11 @@ Options: restrictions in the bootprocess only IPs are allowed. Supported protocols are: http and ftp -t Directory Directory that should be used for temporary files - during build. Defaults to /tmp/grml2iso.tmp if unset. + during build, instead of using a temporary directory + created by mktemp(1). Examples: - $0 -s http://192.168.23.42:8000/grml/ -o small.iso grml64_2010.12.iso + $0 -s http://192.168.23.42:8000/grml/ -o small.iso grml64-small_2021.07.iso Will generate a file small.iso which tries to download the squashfs file from http://192.168.23.42:8000/grml/ - the squashfs file is placed in the same @@ -104,10 +94,6 @@ Options: GRML2USB_OPTS+=(--bootoptions="fetch=$URI") fi - if [ -n "$WRKDIR" ] ; then - GRML2USB_OPTS+=(--tmpdir="$WRKDIR") - fi - # make sure -o is specified [ -n "$ISOFILE" ] || usage 1 @@ -152,8 +138,16 @@ Options: esac # }}} -# create necessary stuff under WRKDIR {{{ - [ -d "$WRKDIR" ] && WRKDIR_EXISTED='true' || WRKDIR_EXISTED='false' +# ensure to properly set up working directory {{{ + WRKDIR_EXISTED='false' + if [ -z "$WRKDIR" ] ; then + WRKDIR="$(mktemp -d)" + else + [ -d "$WRKDIR" ] && WRKDIR_EXISTED='true' + fi + + GRML2USB_OPTS+=(--tmpdir="$WRKDIR") + rm -rf "$WRKDIR/cddir" "$WRKDIR/grub_tmp" mkdir -p "$WRKDIR/cddir" # }}}} @@ -198,7 +192,14 @@ Options: UEFI_ENABLE=false else echo "/boot/efi.img found, extending boot arguments for (U)EFI boot." - BOOT_ARGS="$BOOT_ARGS -boot-info-table -eltorito-alt-boot -e boot/efi.img -no-emul-boot" + if ! [ -r /usr/lib/ISOLINUX/isohdpfx.bin ] ; then + echo "Error: /usr/lib/ISOLINUX/isohdpfx.bin not available, required for xorriso/isohybrid though." >&2 + echo "Hint: make sure isolinux is installed." >&2 + exit 1 + else + BOOT_ARGS+=" -boot-info-table -eltorito-alt-boot -e boot/efi.img -no-emul-boot" + BOOT_ARGS+=" -isohybrid-mbr /usr/lib/ISOLINUX/isohdpfx.bin -eltorito-alt-boot -e boot/efi.img -no-emul-boot -isohybrid-gpt-basdat -no-pad" + fi fi fi ;; @@ -272,33 +273,10 @@ Options: # }}} # generate the CD/DVD ISO {{{ - $MKISOFS -V 'grml-multiboot' -l -r -J -no-pad $BOOT_ARGS \ + $MKISOFS -V 'grml-multiboot' -l -r -J $BOOT_ARGS \ -o "$ISOFILE" . # }}} -# pad the output ISO to multiples of 256 KiB for partition table support {{{ - siz=$($getfilesize "$ISOFILE") - cyls=$(($siz / 512 / 32 / 16 + 1)) # C=$cyls H=16 S=32 - ofs=$(($cyls * 16 * 32 * 512 - 1)) # padding offset (size - 1) - dd if=/dev/zero bs=1 count=1 seek=$ofs of="$ISOFILE" 2>/dev/null -# }}} - -# make ISO dd-able {{{ - if ! $UEFI_ENABLE ; then - echo "Skipping check for --uefi option in isohybrid since prerequisites are not fulfilled." - else - if ! isohybrid --help | grep -q -- --uefi ; then - echo "isohybrid version does NOT support --uefi option, disabling" - else - echo "isohybrid version supports --uefi option" - ISOHYBRID_OPTIONS=--uefi - fi - fi - - echo "Creating dd-able ISO using isohybrid" - isohybrid $ISOHYBRID_OPTIONS "$ISOFILE" -# }}} - # cleanup {{{ cd "$ORIG_DIR" sync