From 617f8ede6877f0bdda44e8c1394f33578e58dcaf Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 23 Mar 2010 13:14:38 -0400 Subject: [PATCH] Added "recreate-iso.sh -e EXTRAVER" option --- buildscripts/recreate-iso.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- 2.26.2