Oops, fix option handling in sysresccd-usbstick (unedited copy/paste)
authorW. Trevor King <wking@drexel.edu>
Wed, 24 Mar 2010 00:09:39 +0000 (20:09 -0400)
committerW. Trevor King <wking@drexel.edu>
Wed, 24 Mar 2010 00:09:39 +0000 (20:09 -0400)
portage-overlay/sys-apps/sysresccd-scripts/files/sysresccd-usbstick

index fb9439e8b5f092807edede5c029949dd4fbf38ed..834f534bd28d0822e50d8d16567debb38228e6b9 100755 (executable)
@@ -39,7 +39,7 @@ Commands (execute in that order):
  -i ISODIR                Set the mount directory for the stock SysRescCD iso ($ISODIR)
  -u USBDIR                Set the directory for mounting the USB stick ($USBDIR)
  -m SYSLINUX              Set the syslinux program ($SYSLINUX)
- -s MINSIZEMB             Minimal size required for SysRescCD in mega-bytes
+ -s MINSIZEMB             Minimal size required for SysRescCD in mega-bytes ($MINSIZEMB)
  dialog                   Dialog to make SystemRescueCD-USB-Sticks
 
 Distributed under the GNU Public License version 2 - http://www.sysresccd.org
@@ -482,12 +482,13 @@ then
        exit 1
 fi
 
-while getopts ":ui:r:w:m:" Option
+while getopts ":i:u:m:s:" Option
 do
        case $Option in
                i ) ISODIR="$OPTARG";;
-               r ) ROOTDIR="$OPTARG";;
-               w ) WORKDIR="$OPTARG";;
+               u ) USBDIR="$OPTARG";;
+               m ) SYSLINUX="$OPTARG";;
+               s ) MINSIZEMB="$OPTARG";;
                * ) usage; exit 1;;  # Default, handles -h
        esac
 done