X-Git-Url: https://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;h=312f6eb3a551c7b1d92788692ff7c13297353e6d;hp=7cc07c37523ca107d852a15bccefc7d49cd348d5;hb=10886e8fcf86c84c8b2ca74cb76687d90c546ba1;hpb=23fdbb4480fe937d94845754a448b8c2b724b0b7 diff --git a/grml2usb b/grml2usb index 7cc07c3..312f6eb 100755 --- a/grml2usb +++ b/grml2usb @@ -705,6 +705,10 @@ def install_syslinux_mbr(device): @device: device where MBR of syslinux should be installed to""" + # make sure we have syslinux available + if not which("syslinux") and not options.copyonly: + raise Exception("syslinux not available (either install it or consider dropping the --syslinux option)") + # lilo's mbr is broken, use the one from syslinux instead: if not os.path.isfile("/usr/lib/syslinux/mbr.bin"): raise Exception("/usr/lib/syslinux/mbr.bin can not be read") @@ -1564,12 +1568,6 @@ def handle_mbr(device): logging.info("Would install MBR") return 0 - # make sure we have syslinux available - if not which("syslinux") and not options.copyonly: - logging.critical('Sorry, syslinux not available. Exiting.') - logging.critical('Please install syslinux or consider using the --grub option.') - sys.exit(1) - if device[-1:].isdigit(): mbr_device = re.match(r'(.*?)\d*$', device).group(1) partition_number = int(device[-1:]) - 1