=================================================================== RCS file: /cvs/openbsd/fw_update/fw_install.sh,v retrieving revision 1.80 retrieving revision 1.82 diff -u -r1.80 -r1.82 --- openbsd/fw_update/fw_install.sh 2021/12/12 20:21:14 1.80 +++ openbsd/fw_update/fw_install.sh 2021/12/12 20:24:53 1.82 @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: fw_install.sh,v 1.80 2021/12/12 20:21:14 afresh1 Exp $ +# $OpenBSD: fw_install.sh,v 1.82 2021/12/12 20:24:53 afresh1 Exp $ # # Copyright (c) 2021 Andrew Hewus Fresh # @@ -174,18 +174,18 @@ } usage() { - echo "usage: fw_install [-dL] [driver | file [...]]" + echo "usage: fw_install [-DL] [driver | file [...]]" exit 2 } INSTALL=true DOWNLOAD=true -while getopts dL name +while getopts DL name do case "$name" in # "download only" means local dir and don't install - d) LOCALSRC=. INSTALL=false ;; + D) LOCALSRC=. INSTALL=false ;; L) LOCALSRC=. ;; ?) usage 2 ;; esac