X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2iso;h=ecf9c827d14e4345c82e66be1ed0dbd83dfd5b24;hp=31406c59d0863bf77b9be29c1a673ac0c4fada54;hb=ba5ec1ec6b0324380f02df11518968a285306dd0;hpb=8e0bdf8c81f453fa3d2c6ac32114bff544284493 diff --git a/grml2iso b/grml2iso index 31406c5..ecf9c82 100755 --- a/grml2iso +++ b/grml2iso @@ -7,6 +7,9 @@ # License: This file is licensed under the GPL v2 or any later version. ################################################################################ +# 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 @@ -34,7 +37,7 @@ else fi if ! which isohybrid >/dev/null 2>&1 ; then - echo "Error: isohybrid executable not found (install syslinux/isolinux?)." >&2 + echo "Error: isohybrid executable not found (install syslinux/isolinux/syslinux-utils?)." >&2 exit 1 fi # }}} @@ -63,7 +66,7 @@ Options: during build. Defaults to /tmp/grml2iso.tmp if unset. 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_2018.12.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 @@ -179,7 +182,7 @@ Options: # efi boot {{{ # default, independent of UEFI support BOOT_ARGS="-no-emul-boot -boot-load-size 4 -boot-info-table -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat" - UEFI_ENABLE=true + UEFI_ENABLE=false case "$MKISOFS" in xorriso*) @@ -188,6 +191,7 @@ Options: echo "Disabling (U)EFI boot support since xorriso version is not recent enough." else echo "xorriso with -eltorito-alt-boot support present" + UEFI_ENABLE=true if ! [ -r "${WRKDIR}/cddir/boot/efi.img" ] ; then echo "Warning: File /boot/efi.img not found, not extending boot arguments for (U)EFI boot." @@ -199,10 +203,7 @@ Options: fi ;; *) - if ! [ -r "${WRKDIR}/cddir/boot/efi.img" ] ; then - echo "Warning: File /boot/efi.img not found." - UEFI_ENABLE=false - fi + echo "Using $MKISOFS for ISO generation (lacking UEFI option), disabling (U)EFI boot support." ;; esac # }}} @@ -284,7 +285,7 @@ Options: # make ISO dd-able {{{ if ! $UEFI_ENABLE ; then - echo "Skipping check for --uefi option in isohybrid since /boot/efi.img does not exist." + 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" @@ -292,10 +293,10 @@ Options: echo "isohybrid version supports --uefi option" ISOHYBRID_OPTIONS=--uefi fi - - echo "Creating dd-able ISO using isohybrid" - isohybrid $ISOHYBRID_OPTIONS "$ISOFILE" fi + + echo "Creating dd-able ISO using isohybrid" + isohybrid $ISOHYBRID_OPTIONS "$ISOFILE" # }}} # cleanup {{{