Home | History | Annotate | Line # | Download | only in miniroot
upgrade.sh revision 1.7
      1 #!/bin/sh
      2 #	$NetBSD: upgrade.sh,v 1.7 1996/08/25 14:49:06 pk Exp $
      3 #
      4 # Copyright (c) 1996 The NetBSD Foundation, Inc.
      5 # All rights reserved.
      6 #
      7 # This code is derived from software contributed to The NetBSD Foundation
      8 # by Jason R. Thorpe.
      9 #
     10 # Redistribution and use in source and binary forms, with or without
     11 # modification, are permitted provided that the following conditions
     12 # are met:
     13 # 1. Redistributions of source code must retain the above copyright
     14 #    notice, this list of conditions and the following disclaimer.
     15 # 2. Redistributions in binary form must reproduce the above copyright
     16 #    notice, this list of conditions and the following disclaimer in the
     17 #    documentation and/or other materials provided with the distribution.
     18 # 3. All advertising materials mentioning features or use of this software
     19 #    must display the following acknowledgement:
     20 #        This product includes software developed by the NetBSD
     21 #        Foundation, Inc. and its contributors.
     22 # 4. Neither the name of The NetBSD Foundation nor the names of its
     23 #    contributors may be used to endorse or promote products derived
     24 #    from this software without specific prior written permission.
     25 #
     26 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29 # PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
     30 # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36 # POSSIBILITY OF SUCH DAMAGE.
     37 #
     38 
     39 #	NetBSD installation script.
     40 #	In a perfect world, this would be a nice C program, with a reasonable
     41 #	user interface.
     42 
     43 ROOTDISK=""				# filled in below
     44 
     45 trap "unmount_fs -fast /tmp/fstab.shadow > /dev/null 2>&1; rm -f /tmp/fstab.shadow" 0
     46 
     47 MODE="upgrade"
     48 
     49 # include machine-dependent functions
     50 # The following functions must be provided:
     51 #	md_copy_kernel()	- copy a kernel to the installed disk
     52 #	md_get_diskdevs()	- return available disk devices
     53 #	md_get_cddevs()		- return available CD-ROM devices
     54 #	md_get_ifdevs()		- return available network interfaces
     55 #	md_get_partition_range() - return range of valid partition letters
     56 #	md_installboot()	- install boot-blocks on disk
     57 #	md_labeldisk()		- put label on a disk
     58 #	md_welcome_banner()	- display friendly message
     59 #	md_not_going_to_install() - display friendly message
     60 #	md_congrats()		- display friendly message
     61 
     62 # include machine dependent subroutines
     63 . install.md
     64 
     65 # include common subroutines
     66 . install.sub
     67 
     68 # Good {morning,afternoon,evening,night}.
     69 md_welcome_banner
     70 echo -n "Proceed with upgrade? [n] "
     71 getresp "n"
     72 case "$resp" in
     73 	y*|Y*)
     74 		echo	"Cool!  Let's get to it..."
     75 		;;
     76 	*)
     77 		md_not_going_to_install
     78 		exit
     79 		;;
     80 esac
     81 
     82 # Deal with terminal issues
     83 md_set_term
     84 
     85 # XXX Work around vnode aliasing bug (thanks for the tip, Chris...)
     86 ls -l /dev > /dev/null 2>&1
     87 
     88 # We don't like it, but it sure makes a few things a lot easier.
     89 do_mfs_mount "/tmp" "2048"
     90 
     91 while [ "X${ROOTDISK}" = "X" ]; do
     92 	getrootdisk
     93 done
     94 
     95 # Assume partition 'a' of $ROOTDISK is for the root filesystem.  Confirm
     96 # this with the user.  Check and mount the root filesystem.
     97 resp=""			# force one iteration
     98 while [ "X${resp}" = "X" ]; do
     99 	echo -n	"Root filesystem? [${ROOTDISK}a] "
    100 	getresp "${ROOTDISK}a"
    101 	_root_filesystem="/dev/`basename $resp`"
    102 	if [ ! -b ${_root_filesystem} ]; then
    103 		echo "Sorry, ${resp} is not a block device."
    104 		resp=""	# force loop to repeat
    105 	fi
    106 done
    107 
    108 echo	"Checking root filesystem..."
    109 if ! fsck -pf ${_root_filesystem}; then
    110 	echo	"ERROR: can't check root filesystem!"
    111 	exit 1
    112 fi
    113 
    114 echo	"Mounting root filesystem..."
    115 if ! mount -o ro ${_root_filesystem} /mnt; then
    116 	echo	"ERROR: can't mount root filesystem!"
    117 	exit 1
    118 fi
    119 
    120 # Grab the fstab so we can munge it for our own use.
    121 if [ ! -f /mnt/etc/fstab ]; then
    122 	echo	"ERROR: no /etc/fstab!"
    123 	exit 1
    124 fi
    125 
    126 # Grab the hosts table so we can use it.
    127 if [ ! -f /mnt/etc/hosts ]; then
    128 	echo	"ERROR: no /etc/hosts!"
    129 	exit 1
    130 fi
    131 cp /mnt/etc/hosts /tmp/hosts
    132 
    133 # Start up the network in same/similar configuration as the installed system
    134 # uses.
    135 cat << \__network_config_1
    136 
    137 The upgrade program would now like to enable the network.  It will use the
    138 configuration already stored on the root filesystem.  This is required
    139 if you wish to use the network installation capabilities of this program.
    140 
    141 __network_config_1
    142 echo -n	"Enable network? [y] "
    143 getresp "y"
    144 case "$resp" in
    145 	y*|Y*)
    146 		if ! enable_network; then
    147 			echo "ERROR: can't enable network!"
    148 			exit 1
    149 		fi
    150 
    151 		cat << \__network_config_2
    152 
    153 You will now be given the opportunity to escape to the command shell to
    154 do any additional network configuration you may need.  This may include
    155 adding additional routes, if needed.  In addition, you might take this
    156 opportunity to redo the default route in the event that it failed above.
    157 
    158 __network_config_2
    159 		echo -n "Escape to shell? [n] "
    160 		getresp "n"
    161 		case "$resp" in
    162 			y*|Y*)
    163 				echo "Type 'exit' to return to upgrade."
    164 				sh
    165 				;;
    166 
    167 			*)
    168 				;;
    169 		esac
    170 		;;
    171 	*)
    172 		;;
    173 esac
    174 
    175 # Now that the network has been configured, it is safe to configure the
    176 # fstab.  We remove all but ufs/ffs.
    177 (
    178 	> /tmp/fstab
    179 	while read _dev _mp _fstype _rest ; do
    180 		if [ "X${_fstype}" = X"ufs" -o \
    181 		     "X${_fstype}" = X"ffs" ]; then
    182 			if [ "X${_fstype}" = X"ufs" ]; then
    183 				# Convert ufs to ffs.
    184 				_fstype=ffs
    185 			fi
    186 			echo "$_dev $_mp $_fstype $_rest" >> /tmp/fstab
    187 		fi
    188 	done
    189 ) < /mnt/etc/fstab
    190 
    191 echo	"The fstab is configured as follows:"
    192 echo	""
    193 cat /tmp/fstab
    194 cat << \__fstab_config_1
    195 
    196 You may wish to edit the fstab.  For example, you may need to resolve
    197 dependencies in the order which the filesystems are mounted.  Note that
    198 this fstab is only for installation purposes, and will not be copied into
    199 the root filesystem.
    200 
    201 __fstab_config_1
    202 echo -n	"Edit the fstab? [n] "
    203 getresp "n"
    204 case "$resp" in
    205 	y*|Y*)
    206 		${EDITOR} /tmp/fstab
    207 		;;
    208 
    209 	*)
    210 		;;
    211 esac
    212 
    213 echo	""
    214 munge_fstab /tmp/fstab /tmp/fstab.shadow
    215 
    216 if ! umount /mnt; then
    217 	echo	"ERROR: can't unmount previously mounted root!"
    218 	exit 1
    219 fi
    220 
    221 # Check all of the filesystems.
    222 check_fs /tmp/fstab.shadow
    223 
    224 # Mount filesystems.
    225 mount_fs /tmp/fstab.shadow
    226 
    227 THESETS="$UPGRSETS"
    228 echo -n	"Are the upgrade sets on one of your normally mounted (local) filesystems? [y] "
    229 getresp "y"
    230 case "$resp" in
    231 	y*|Y*)
    232 		get_localdir /mnt
    233 		;;
    234 	*)
    235 		;;
    236 esac
    237 
    238 # Install sets.
    239 install_sets
    240 
    241 # Get timezone info
    242 get_timezone
    243 
    244 # Fix up the fstab.
    245 echo -n	"Converting ufs to ffs in /etc/fstab..."
    246 (
    247 	> /tmp/fstab
    248 	while read _dev _mp _fstype _rest ; do
    249 		if [ "X${_fstype}" = X"ufs" ]; then
    250 			# Convert ufs to ffs.
    251 			_fstype=ffs
    252 		fi
    253 		echo "$_dev $_mp $_fstype $_rest" >> /tmp/fstab
    254 	done
    255 ) < /mnt/etc/fstab
    256 echo	"done."
    257 echo -n	"Would you like to edit the resulting fstab? [y] "
    258 getresp "y"
    259 case "$resp" in
    260 	y*|Y*)
    261 		${EDITOR} /tmp/fstab
    262 		;;
    263 
    264 	*)
    265 		;;
    266 esac
    267 
    268 # Copy in configuration information and make devices in target root.
    269 (
    270 	cd /tmp
    271 	for file in fstab; do
    272 		if [ -f $file ]; then
    273 			echo -n "Copying $file..."
    274 			cp $file /mnt/etc/$file
    275 			echo "done."
    276 		fi
    277 	done
    278 
    279 	echo -n "Installing timezone link..."
    280 	rm -f /mnt/etc/localtime
    281 	ln -s /usr/share/zoneinfo/$TZ /mnt/etc/localtime
    282 	echo "done."
    283 
    284 	echo -n "Making devices..."
    285 	_pid=`twiddle`
    286 	cd /mnt/dev
    287 	sh MAKEDEV all
    288 	kill $_pid
    289 	echo "done."
    290 
    291 	md_copy_kernel
    292 
    293 	md_installboot ${ROOTDISK}
    294 )
    295 
    296 unmount_fs /tmp/fstab.shadow
    297 
    298 # Pat on the back.
    299 md_congrats
    300 
    301 # ALL DONE!
    302 exit 0
    303