Mention the --syslinux option if grub-install fails
authorMichael Prokop <mika@grml.org>
Mon, 7 Sep 2009 13:22:50 +0000 (15:22 +0200)
committerMichael Prokop <mika@grml.org>
Mon, 7 Sep 2009 13:22:50 +0000 (15:22 +0200)
debian/changelog
grml2usb

index e6c9654..41ddbb3 100644 (file)
@@ -8,8 +8,9 @@ grml2usb (0.9.10) UNRELEASED; urgency=low
     grub-install of (at least) Fedora 10.
     Thanks for the patch to Alexander 'Leo' Bergolth <leo@strike.wu.ac.at>!
   * Use 'pci=nomsi' in failsafe bootoption. Thanks to Marc 'HE' Brockschmidt.
+  * Mention the --syslinux option if grub-install fails.
 
- -- Michael Prokop <mika@grml.org>  Mon, 07 Sep 2009 15:11:21 +0200
+ -- Michael Prokop <mika@grml.org>  Mon, 07 Sep 2009 15:21:39 +0200
 
 grml2usb (0.9.9) unstable; urgency=low
 
index ae24edb..c4375d7 100755 (executable)
--- a/grml2usb
+++ b/grml2usb
@@ -637,7 +637,7 @@ def install_grub(device):
                 proc.wait()
                 if proc.returncode != 0:
                     # raise Exception("error executing grub-install")
-                    logging.critical("Fatal: error executing grub-install (please check the grml2usb FAQ)")
+                    logging.critical("Fatal: error executing grub-install (please check the grml2usb FAQ or use --syslinux)")
                     cleanup()
                     sys.exit(1)
             except CriticalException, error: