From: Michael Prokop Date: Wed, 26 Jun 2013 14:04:25 +0000 (+0200) Subject: grml2iso: mention isolinux in 'isohybrid executable not found' message, add isolinux... X-Git-Tag: v0.14.0~3 X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=commitdiff_plain;h=8e0bdf8c81f453fa3d2c6ac32114bff544284493 grml2iso: mention isolinux in 'isohybrid executable not found' message, add isolinux to recommends Binary package syslinux in version 3:4.05+dfsg-6+deb7u3 ships the isohybrid binary, but starting with version 3:6.00+dfsg-1 the isohybrid binary is part of the isolinux binary package... --- diff --git a/debian/control b/debian/control index 3cee640..958c0a8 100644 --- a/debian/control +++ b/debian/control @@ -12,7 +12,7 @@ Vcs-Browser: http://git.grml.org/?p=grml2usb.git Package: grml2usb Architecture: i386 amd64 Depends: ${shlibs:Depends}, ${misc:Depends}, syslinux | grub-pc, python, rsync, mtools, realpath -Recommends: syslinux, xorriso | genisoimage +Recommends: syslinux, isolinux, xorriso | genisoimage Description: install Grml system / ISO to usb device This script installs a Grml ISO to an USB device to be able to boot from it. Make sure you have at least one Grml ISO diff --git a/grml2iso b/grml2iso index 31d8acd..31406c5 100755 --- a/grml2iso +++ b/grml2iso @@ -34,7 +34,7 @@ else fi if ! which isohybrid >/dev/null 2>&1 ; then - echo "Error: isohybrid executable not found (install syslinux?)." >&2 + echo "Error: isohybrid executable not found (install syslinux/isolinux?)." >&2 exit 1 fi # }}}