Browse Source

sde-create-iso: enhanced program paramaters to allow easied definition of optical media

karasz/installer
Nagy Karoly Gabriel 15 years ago
committed by Alejandro Mery
parent
commit
aa12dcfd98
1 changed files with 13 additions and 1 deletions
  1. +13
    -1
      bin/sde-create-iso

+ 13
- 1
bin/sde-create-iso

@ -23,6 +23,18 @@
create_usage() {
local progname=$(echo ${0##*/} | tr '-' ' ')
echo "Usage: $progname -t <cd|dvd> <config> [<config>....]"
cat <<-EOT
Usage: $progname [-t <type>] [-s <size>] <config> [<config>....]"
Type:
c25 - CD 25 MB
c50 - CD 50 MB
c100 - CD 100 MB
c700 - CD 700 MB
d4 - DVD 4.7 GB
Size:
size of desired disk in MB
Type and Size are optional, but at leasr one is required.
EOT
exit 1
}

Loading…
Cancel
Save