X-Git-Url: https://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;h=ec3ba3befa7735567368a8f7c6e5e2688470d45e;hp=9dcd21cd28ad80d7ba8a13e44fd45f3f061a258e;hb=6c6f33917acb91227ad8b5354da5a4d275c4847c;hpb=61678a9511f8fbedc4389b45d87a272174bd7a13 diff --git a/grml2usb b/grml2usb index 9dcd21c..ec3ba3b 100755 --- a/grml2usb +++ b/grml2usb @@ -18,7 +18,7 @@ from inspect import isroutine, isclass import datetime, logging, os, re, subprocess, sys, tempfile, time # global variables -PROG_VERSION = "0.9.2(pre2)" +PROG_VERSION = "0.9.2" MOUNTED = set() # register mountpoints TMPFILES = set() # register tmpfiles DATESTAMP = time.mktime(datetime.datetime.now().timetuple()) # unique identifier for syslinux.cfg @@ -26,10 +26,11 @@ DATESTAMP = time.mktime(datetime.datetime.now().timetuple()) # unique identifier # cmdline parsing USAGE = "Usage: %prog [options] <[ISO[s] | /live/image]> \n\ \n\ -%prog installs a grml ISO to an USB device to be able to boot from it.\n\ +%prog installs grml ISO[s] to an USB device to be able to boot from it.\n\ Make sure you have at least one grml ISO or a running grml system (/live/image),\n\ -syslinux (just run 'aptitude install syslinux' on Debian-based systems)\n\ -and root access. Further information can be found in: man grml2usb" +grub or syslinux and root access.\n\ +\n\ +Execute %prog --help for usage hints, further information can be found in: man grml2usb" # pylint: disable-msg=C0103 parser = OptionParser(usage=USAGE)