[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.127 and 1.131

version 1.127, 2021/12/25 02:38:33 version 1.131, 2021/12/25 19:03:56
Line 34 
Line 34 
 FWURL=http://firmware.openbsd.org/firmware/${HTTP_FWDIR}  FWURL=http://firmware.openbsd.org/firmware/${HTTP_FWDIR}
 FWPUB_KEY=${DESTDIR}/etc/signify/openbsd-${VERSION}-fw.pub  FWPUB_KEY=${DESTDIR}/etc/signify/openbsd-${VERSION}-fw.pub
   
   DRYRUN=false
 VERBOSE=false  VERBOSE=false
 DELETE=false  DELETE=false
 DOWNLOAD=true  DOWNLOAD=true
Line 41 
Line 42 
 LOCALSRC=  LOCALSRC=
   
 unset FTPPID  unset FTPPID
   unset FWPKGTMP
 REMOVE_LOCALSRC=false  REMOVE_LOCALSRC=false
 cleanup() {  cleanup() {
         set +o errexit # ignore errors from killing ftp          set +o errexit # ignore errors from killing ftp
         [ "${FTPPID:-}" ] && kill -TERM -"$FTPPID" #2>/dev/null          [ "${FTPPID:-}" ] && kill -TERM -"$FTPPID" 2>/dev/null
           [ "${FWPKGTMP:-}" ] && rm -rf "$FWPKGTMP"
         "$REMOVE_LOCALSRC" && rm -rf "$LOCALSRC"          "$REMOVE_LOCALSRC" && rm -rf "$LOCALSRC"
 }  }
 trap cleanup EXIT  trap cleanup EXIT
Line 195 
Line 198 
   
 add_firmware () {  add_firmware () {
         local _f="${1##*/}" _pkgname          local _f="${1##*/}" _pkgname
         local _tmpdir="$( tmpdir "${DESTDIR}/var/db/pkg/.firmware" )"          FWPKGTMP="$( tmpdir "${DESTDIR}/var/db/pkg/.firmware" )"
         local flags=-VM          local flags=-VM
         "$VERBOSE" && flags=-vm          "$VERBOSE" && flags=-vm
         ftp -N "${0##/}" -D "Install" "$flags" -o- "file:${1}" |          ftp -N "${0##/}" -D "Install" "$flags" -o- "file:${1}" |
                 tar -s ",^\+,${_tmpdir}/+," \                  tar -s ",^\+,${FWPKGTMP}/+," \
                     -s ",^firmware,${DESTDIR}/etc/firmware," \                      -s ",^firmware,${DESTDIR}/etc/firmware," \
                     -C / -zxphf - "+*" "firmware/*"                      -C / -zxphf - "+*" "firmware/*"
   
         _pkgname="$( sed -n '/^@name /{s///p;q;}' "${_tmpdir}/+CONTENTS" )"          _pkgname="$( sed -n '/^@name /{s///p;q;}' "${FWPKGTMP}/+CONTENTS" )"
         if [ ! "$_pkgname" ]; then          if [ ! "$_pkgname" ]; then
                 echo "Failed to extract name from $1, partial install" 2>&1                  echo "Failed to extract name from $1, partial install" 2>&1
                 rm -rf "$_tmpdir"                  rm -rf "$FWPKGTMP"
                   unset FWPKGTMP
                 return 1                  return 1
         fi          fi
   
         # TODO: Should we mark these so real fw_update can -Drepair?          # TODO: Should we mark these so real fw_update can -Drepair?
         ed -s "${_tmpdir}/+CONTENTS" <<EOL          ed -s "${FWPKGTMP}/+CONTENTS" <<EOL
 /^@comment pkgpath/ -1a  /^@comment pkgpath/ -1a
 @option manual-installation  @option manual-installation
 @option firmware  @option firmware
Line 220 
Line 224 
 w  w
 EOL  EOL
   
         chmod 755 "$_tmpdir"          chmod 755 "$FWPKGTMP"
         mv "$_tmpdir" "${DESTDIR}/var/db/pkg/${_pkgname}"          mv "$FWPKGTMP" "${DESTDIR}/var/db/pkg/${_pkgname}"
           unset FWPKGTMP
 }  }
   
 delete_firmware() {  delete_firmware() {
Line 272 
Line 277 
   
 ALL=false  ALL=false
 OPT_D=  OPT_D=
 while getopts :adDp:v name  while getopts :adDnp:v name
 do  do
        case "$name" in         case "$name" in
        a) ALL=true ;;         a) ALL=true ;;
        d) DELETE=true ;;         d) DELETE=true ;;
        D) OPT_D=true ;;         D) OPT_D=true ;;
          n) DRYRUN=true ;;
        p) LOCALSRC="$OPTARG" ;;         p) LOCALSRC="$OPTARG" ;;
        v) VERBOSE=true ;;         v) VERBOSE=true ;;
        :)         :)
Line 308 
Line 314 
 if [ "$OPT_D" ]; then  if [ "$OPT_D" ]; then
         INSTALL=false          INSTALL=false
         LOCALSRC="${LOCALSRC:-.}"          LOCALSRC="${LOCALSRC:-.}"
   elif [ "$LOCALSRC" ]; then
           DOWNLOAD=false
 fi  fi
   
 if [ -x /usr/bin/id ] && [ "$(/usr/bin/id -u)" != 0 ]; then  if [ -x /usr/bin/id ] && [ "$(/usr/bin/id -u)" != 0 ]; then
Line 346 
Line 354 
         deleted=''          deleted=''
         if [ "${installed:-}" ]; then          if [ "${installed:-}" ]; then
                 for fw in "${installed[@]}"; do                  for fw in "${installed[@]}"; do
                         delete_firmware "$fw" || continue                          if "$DRYRUN"; then
                                   echo "Delete $fw"
                           else
                                   delete_firmware "$fw" || continue
                           fi
                         deleted="$deleted,$( firmware_devicename "$fw" )"                          deleted="$deleted,$( firmware_devicename "$fw" )"
                 done                  done
         fi          fi
Line 407 
Line 419 
         if "$INSTALL" && [ "${installed[*]:-}" ]; then          if "$INSTALL" && [ "${installed[*]:-}" ]; then
                 for i in "${installed[@]}"; do                  for i in "${installed[@]}"; do
                         if [ "${f##*/}" = "$i.tgz" ]; then                          if [ "${f##*/}" = "$i.tgz" ]; then
                                 "$VERBOSE" && echo "$i already installed"                                  "$VERBOSE" && echo "Keep $i"
                                 kept="$kept,$d"                                  kept="$kept,$d"
                                 continue 2                                  continue 2
                         fi                          fi
Line 416 
Line 428 
   
         if [ -e "$f" ]; then          if [ -e "$f" ]; then
                 if "$DOWNLOAD"; then                  if "$DOWNLOAD"; then
                         "$VERBOSE" && echo "Verify existing ${f##*/}"                          if "$VERBOSE"; then
                         verify "$f" || continue                                  "$INSTALL" &&
                         "$INSTALL"  || kept="$kept,$d"                                      echo "Verify ${f##*/}" ||
                                       echo "Keep/Verify ${f##*/}"
                                   echo "Verify ${f##*/}"
                           fi
                           "$DRYRUN"  || verify "$f" || continue
                           "$INSTALL" || kept="$kept,$d"
                 # else assume it was verified when downloaded                  # else assume it was verified when downloaded
                 fi                  fi
         elif "$DOWNLOAD"; then          elif "$DOWNLOAD"; then
                 fetch  "$f" || continue                  if "$DRYRUN"; then
                 verify "$f" || continue                          "$VERBOSE" && echo "Get/Verify ${f##*/}"
                   else
                           fetch  "$f" || continue
                           verify "$f" || continue
                   fi
                 "$INSTALL"  || added="$added,$d"                  "$INSTALL"  || added="$added,$d"
         elif "$INSTALL"; then          elif "$INSTALL"; then
                 echo "Cannot install ${f##*/}, not found" >&2                  echo "Cannot install ${f##*/}, not found" >&2
Line 435 
Line 456 
         removed=false          removed=false
         if [ "${installed[*]:-}" ]; then          if [ "${installed[*]:-}" ]; then
                 for i in "${installed[@]}"; do                  for i in "${installed[@]}"; do
                         delete_firmware "$i"                          "$DRYRUN" || delete_firmware "$i"
                         removed=true                          removed=true
                 done                  done
         fi          fi
   
         add_firmware "$f"          "$DRYRUN" || add_firmware "$f"
   
           f="${f##*/}"
           f="${f%.tgz}"
         if "$removed"; then          if "$removed"; then
                   "$DRYRUN" && echo "Update $f"
                 updated="$updated,$d"                  updated="$updated,$d"
         else          else
                   "$DRYRUN" && echo "Install $f"
                 added="$added,$d"                  added="$added,$d"
         fi          fi
 done  done

Legend:
Removed from v.1.127  
changed lines
  Added in v.1.131

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