[BACK]Return to update_openbsd CVS log [TXT][DIR] Up to [local] / openbsd / update_openbsd

Diff for /openbsd/update_openbsd/update_openbsd between version 1.109 and 1.110

version 1.109, 2018/02/08 19:08:01 version 1.110, 2018/10/01 00:31:27
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
 # $AFresh1: update_openbsd,v 1.108 2018/02/08 19:07:06 andrew Exp $  # $AFresh1: update_openbsd,v 1.109 2018/02/08 19:08:01 andrew Exp $
 #  #
 # Copyright (c) 2012 Andrew Fresh <andrew@afresh1.com>  # Copyright (c) 2012 Andrew Fresh <andrew@afresh1.com>
 #  #
Line 424 
Line 424 
   
   
 install_kernels() {  install_kernels() {
     local _d=$1      local _d="$1"
     local default_mount      local default_mount
     local boot_mount      local boot_mount
     local mount_is_msdos      local mount_is_msdos
   
     if [ ! "$_d" ]; then      if [ "$_d" ]; then
         _d=$( readlink -nf "$_d" )
       else
         default_mount=$( df -lnP /bsd | sed -ne 's!/dev/.* !!p' )          default_mount=$( df -lnP /bsd | sed -ne 's!/dev/.* !!p' )
         mount_boot_device          mount_boot_device
   
Line 456 
Line 458 
     fi      fi
   
     [ $_d != / ] && mount | grep -q " on ${_d%/} .* msdos" && mount_is_msdos=1      [ $_d != / ] && mount | grep -q " on ${_d%/} .* msdos" && mount_is_msdos=1
       [ $_d != / ] && $_d=$_d/
   
     if [ X"$BOOT_KERNEL_VERSION" != X"$NEW_KERNEL_VERSION" ]; then      if [ X"$BOOT_KERNEL_VERSION" != X"$NEW_KERNEL_VERSION" ]; then
         echo "===> Backing up $BOOT_KERNEL to ${_d}obsd"          echo "===> Backing up $BOOT_KERNEL to ${_d}obsd"

Legend:
Removed from v.1.109  
changed lines
  Added in v.1.110

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