X-Git-Url: https://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;h=dc1a323abcc2778f70a23b2b97ec9ea4e665efcb;hp=33d574c41ce41f553e77b60a564c7a78ac94bd9a;hb=80af3a373622ee1bee61c79e52c563aaf0746f35;hpb=c37fb0c21162ba680e83c858e2a4a806806c298b;ds=sidebyside diff --git a/grml2usb b/grml2usb index 33d574c..dc1a323 100755 --- a/grml2usb +++ b/grml2usb @@ -225,7 +225,6 @@ def mkfs_fat16(device): @device: partition that should be formated""" - # syslinux -d boot/isolinux /dev/sdb1 if options.dryrun: logging.info("Would execute mkfs.vfat -F 16 %s now.", device) return 0 @@ -666,7 +665,7 @@ def install_syslinux(device): proc = subprocess.Popen(["syslinux", "-d", "boot/syslinux", device]) proc.wait() if proc.returncode != 0: - raise CriticalException("Error executing syslinux (either try --fat16 or --grub?)") + raise CriticalException("Error executing syslinux (either try --fat16 or use grub?)") def install_bootloader(device):