1#!/bin/sh 2#- 3# Copyright (c) 2010 iXsystems, Inc. All rights reserved. 4# 5# Redistribution and use in source and binary forms, with or without 6# modification, are permitted provided that the following conditions 7# are met: 8# 1. Redistributions of source code must retain the above copyright 9# notice, this list of conditions and the following disclaimer. 10# 2. Redistributions in binary form must reproduce the above copyright 11# notice, this list of conditions and the following disclaimer in the 12# documentation and/or other materials provided with the distribution. 13# 14# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24# SUCH DAMAGE. 25# 26# $FreeBSD$ 27 28# Need access to a some unmount functions 29. ${PROGDIR}/backend/functions-unmount.sh 30 31echo "Running: find-update-parts" >> ${LOGOUT} 32 33rm ${TMPDIR}/AvailUpgrades >/dev/null 2>/dev/null 34 35FSMNT="/mnt" 36 37# Get the freebsd version on this partition 38get_fbsd_ver() 39{ 40 sFiles="/bin/sh /boot/kernel/kernel" 41 for file in $sFiles 42 do 43 if [ ! -e "${FSMNT}/$file" ] ; then continue ; fi 44 45 VER="`file ${FSMNT}/$file | grep 'for FreeBSD' | sed 's|for FreeBSD |;|g' | cut -d ';' -f 2 | cut -d ',' -f 1`" 46 if [ "$?" = "0" ] ; then 47 file ${FSMNT}/$file | grep '32-bit' >/dev/null 2>/dev/null 48 if [ "${?}" = "0" ] ; then 49 echo "${1}: FreeBSD ${VER} (32bit)" 50 else 51 echo "${1}: FreeBSD ${VER} (64bit)" 52 fi 53 fi 54 break 55 done 56 57} 58 59# Create our device listing 60SYSDISK="`sysctl kern.disks | cut -d ':' -f 2 | sed 's/^[ \t]*//'`" 61DEVS="" 62 63# Now loop through these devices, and list the disk drives 64for i in ${SYSDISK} 65do 66 67 # Get the current device 68 DEV="${i}" 69 # Make sure we don't find any cd devices 70 echo "${DEV}" | grep -e "^acd[0-9]" -e "^cd[0-9]" -e "^scd[0-9]" >/dev/null 2>/dev/null 71 if [ "$?" != "0" ] ; then 72 DEVS="${DEVS} `ls /dev/${i}*`" 73 fi 74 75done 76 77# Search for regular UFS / Geom Partitions to upgrade 78for i in $DEVS 79do 80 if [ ! -e "${i}a.journal" -a ! -e "${i}a" -a ! -e "${i}p2" -a ! -e "${i}p2.journal" ] ; then 81 continue 82 fi 83 84 if [ -e "${i}a.journal" ] ; then 85 _dsk="${i}a.journal" 86 elif [ -e "${i}a" ] ; then 87 _dsk="${i}a" 88 elif [ -e "${i}p2" ] ; then 89 _dsk="${i}p2" 90 elif [ -e "${i}p2.journal" ] ; then 91 _dsk="${i}p2.journal" 92 fi 93 94 mount -o ro ${_dsk} ${FSMNT} >>${LOGOUT} 2>>${LOGOUT} 95 if [ $? -eq 0 ] ; then 96 get_fbsd_ver "`echo ${_dsk} | sed 's|/dev/||g'`" 97 umount -f ${FSMNT} >/dev/null 2>/dev/null 98 fi 99done 100