From: W. Trevor King Date: Tue, 23 Mar 2010 17:14:38 +0000 (-0400) Subject: Added "recreate-iso.sh -e EXTRAVER" option X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=617f8ede6877f0bdda44e8c1394f33578e58dcaf;p=systemrescuecd.git Added "recreate-iso.sh -e EXTRAVER" option --- diff --git a/buildscripts/recreate-iso.sh b/buildscripts/recreate-iso.sh index 5fdb80d..05a761f 100755 --- a/buildscripts/recreate-iso.sh +++ b/buildscripts/recreate-iso.sh @@ -32,12 +32,13 @@ Options: -r REPOBIN ? ($REPOBIN) -d DESTDIR Set the directory for saving the rebuild iso file ($DESTDIR) -m MOUNTDIR Set the directory for mounting the current iso ($MOUNTDIR) + -e EXTRAVER Extra version information for f1boot.msg ($EXTRAVER) Distributed under the GNU Public License version 2 - http://www.sysresccd.org EOF } -while getopts ":i:w:r:b:d:m:" Option +while getopts ":i:w:r:b:d:m:e:" Option do case $Option in i ) ISODIR="$OPTARG";; @@ -46,6 +47,7 @@ do b ) REPOBIN="$OPTARG";; d ) DESTDIR="$OPTARG";; m ) MOUNTDIR="$OPTARG";; + e ) EXTRAVER="$OPTARG";; * ) usage; exit 1;; # Default, handles -h esac done