-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";;
b ) REPOBIN="$OPTARG";;
d ) DESTDIR="$OPTARG";;
m ) MOUNTDIR="$OPTARG";;
+ e ) EXTRAVER="$OPTARG";;
* ) usage; exit 1;; # Default, handles -h
esac
done