grml2iso: mention isolinux in 'isohybrid executable not found' message, add isolinux...
authorMichael Prokop <mika@grml.org>
Wed, 26 Jun 2013 14:04:25 +0000 (16:04 +0200)
committerMichael Prokop <mika@grml.org>
Wed, 26 Jun 2013 14:12:24 +0000 (16:12 +0200)
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...

debian/control
grml2iso

index 3cee640..958c0a8 100644 (file)
@@ -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
index 31d8acd..31406c5 100755 (executable)
--- 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
 # }}}