[BACK]Return to fw_install.sh CVS log [TXT][DIR] Up to [local] / openbsd / fw_update

Diff for /openbsd/fw_update/fw_install.sh between version 1.80 and 1.82

version 1.80, 2021/12/12 20:21:14 version 1.82, 2021/12/12 20:24:53
Line 174 
Line 174 
 }  }
   
 usage() {  usage() {
         echo "usage: fw_install [-dL] [driver | file [...]]"          echo "usage: fw_install [-DL] [driver | file [...]]"
         exit 2          exit 2
 }  }
   
 INSTALL=true  INSTALL=true
 DOWNLOAD=true  DOWNLOAD=true
   
 while getopts dL name  while getopts DL name
 do  do
        case "$name" in         case "$name" in
        # "download only" means local dir and don't install         # "download only" means local dir and don't install
        d) LOCALSRC=. INSTALL=false ;;         D) LOCALSRC=. INSTALL=false ;;
        L) LOCALSRC=. ;;         L) LOCALSRC=. ;;
        ?) usage 2 ;;         ?) usage 2 ;;
        esac         esac

Legend:
Removed from v.1.80  
changed lines
  Added in v.1.82

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>