upgrade.sh revision 1.8
1#!/bin/sh
2#	$NetBSD: upgrade.sh,v 1.8 1996/10/09 00:13:36 jtc 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
43ROOTDISK=""				# filled in below
44
45trap "unmount_fs -fast /tmp/fstab.shadow > /dev/null 2>&1; rm -f /tmp/fstab.shadow" 0
46
47MODE="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# which sets?
69THESETS="$UPGRSETS"
70
71# Good {morning,afternoon,evening,night}.
72md_welcome_banner
73echo -n "Proceed with upgrade? [n] "
74getresp "n"
75case "$resp" in
76	y*|Y*)
77		echo	"Cool!  Let's get to it..."
78		;;
79	*)
80		md_not_going_to_install
81		exit
82		;;
83esac
84
85# Deal with terminal issues
86md_set_term
87
88# XXX Work around vnode aliasing bug (thanks for the tip, Chris...)
89ls -l /dev > /dev/null 2>&1
90
91# Make sure we can write files (at least in /tmp)
92# This might make an MFS mount on /tmp, or it may
93# just re-mount the root with read-write enabled.
94md_makerootwritable
95
96while [ "X${ROOTDISK}" = "X" ]; do
97	getrootdisk
98done
99
100# Assume partition 'a' of $ROOTDISK is for the root filesystem.  Confirm
101# this with the user.  Check and mount the root filesystem.
102resp=""			# force one iteration
103while [ "X${resp}" = "X" ]; do
104	echo -n	"Root filesystem? [${ROOTDISK}a] "
105	getresp "${ROOTDISK}a"
106	_root_filesystem="/dev/`basename $resp`"
107	if [ ! -b ${_root_filesystem} ]; then
108		echo "Sorry, ${resp} is not a block device."
109		resp=""	# force loop to repeat
110	fi
111done
112
113echo	"Checking root filesystem..."
114if ! fsck -pf ${_root_filesystem}; then
115	echo	"ERROR: can't check root filesystem!"
116	exit 1
117fi
118
119echo	"Mounting root filesystem..."
120if ! mount -o ro ${_root_filesystem} /mnt; then
121	echo	"ERROR: can't mount root filesystem!"
122	exit 1
123fi
124
125# Grab the fstab so we can munge it for our own use.
126if [ ! -f /mnt/etc/fstab ]; then
127	echo	"ERROR: no /etc/fstab!"
128	exit 1
129fi
130
131# Grab the hosts table so we can use it.
132if [ ! -f /mnt/etc/hosts ]; then
133	echo	"ERROR: no /etc/hosts!"
134	exit 1
135fi
136cp /mnt/etc/hosts /tmp/hosts
137
138# Start up the network in same/similar configuration as the installed system
139# uses.
140cat << \__network_config_1
141
142The upgrade program would now like to enable the network.  It will use the
143configuration already stored on the root filesystem.  This is required
144if you wish to use the network installation capabilities of this program.
145
146__network_config_1
147echo -n	"Enable network? [y] "
148getresp "y"
149case "$resp" in
150	y*|Y*)
151		if ! enable_network; then
152			echo "ERROR: can't enable network!"
153			exit 1
154		fi
155
156		cat << \__network_config_2
157
158You will now be given the opportunity to escape to the command shell to
159do any additional network configuration you may need.  This may include
160adding additional routes, if needed.  In addition, you might take this
161opportunity to redo the default route in the event that it failed above.
162
163__network_config_2
164		echo -n "Escape to shell? [n] "
165		getresp "n"
166		case "$resp" in
167			y*|Y*)
168				echo "Type 'exit' to return to upgrade."
169				sh
170				;;
171
172			*)
173				;;
174		esac
175		;;
176	*)
177		;;
178esac
179
180# Now that the network has been configured, it is safe to configure the
181# fstab.  We remove all but ufs/ffs.
182(
183	> /tmp/fstab
184	while read _dev _mp _fstype _rest ; do
185		if [ "X${_fstype}" = X"ufs" -o \
186		     "X${_fstype}" = X"ffs" ]; then
187			if [ "X${_fstype}" = X"ufs" ]; then
188				# Convert ufs to ffs.
189				_fstype=ffs
190			fi
191			echo "$_dev $_mp $_fstype $_rest" >> /tmp/fstab
192		fi
193	done
194) < /mnt/etc/fstab
195
196echo	"The fstab is configured as follows:"
197echo	""
198cat /tmp/fstab
199cat << \__fstab_config_1
200
201You may wish to edit the fstab.  For example, you may need to resolve
202dependencies in the order which the filesystems are mounted.  Note that
203this fstab is only for installation purposes, and will not be copied into
204the root filesystem.
205
206__fstab_config_1
207echo -n	"Edit the fstab? [n] "
208getresp "n"
209case "$resp" in
210	y*|Y*)
211		${EDITOR} /tmp/fstab
212		;;
213
214	*)
215		;;
216esac
217
218echo	""
219munge_fstab /tmp/fstab /tmp/fstab.shadow
220
221if ! umount /mnt; then
222	echo	"ERROR: can't unmount previously mounted root!"
223	exit 1
224fi
225
226# Check all of the filesystems.
227check_fs /tmp/fstab.shadow
228
229# Mount filesystems.
230mount_fs /tmp/fstab.shadow
231
232echo -n	"Are the upgrade sets on one of your normally mounted (local) filesystems? [y] "
233getresp "y"
234case "$resp" in
235	y*|Y*)
236		get_localdir /mnt
237		;;
238	*)
239		;;
240esac
241
242# Install sets.
243install_sets
244
245# Get timezone info
246get_timezone
247
248# Fix up the fstab.
249echo -n	"Converting ufs to ffs in /etc/fstab..."
250(
251	> /tmp/fstab
252	while read _dev _mp _fstype _rest ; do
253		if [ "X${_fstype}" = X"ufs" ]; then
254			# Convert ufs to ffs.
255			_fstype=ffs
256		fi
257		echo "$_dev $_mp $_fstype $_rest" >> /tmp/fstab
258	done
259) < /mnt/etc/fstab
260echo	"done."
261echo -n	"Would you like to edit the resulting fstab? [y] "
262getresp "y"
263case "$resp" in
264	y*|Y*)
265		${EDITOR} /tmp/fstab
266		;;
267
268	*)
269		;;
270esac
271
272# Copy in configuration information and make devices in target root.
273(
274	cd /tmp
275	for file in fstab; do
276		if [ -f $file ]; then
277			echo -n "Copying $file..."
278			cp $file /mnt/etc/$file
279			echo "done."
280		fi
281	done
282
283	echo -n "Installing timezone link..."
284	rm -f /mnt/etc/localtime
285	ln -s /usr/share/zoneinfo/$TZ /mnt/etc/localtime
286	echo "done."
287
288	echo -n "Making devices..."
289	_pid=`twiddle`
290	cd /mnt/dev
291	sh MAKEDEV all
292	kill $_pid
293	echo "done."
294
295	md_copy_kernel
296
297	md_installboot ${ROOTDISK}
298)
299
300unmount_fs /tmp/fstab.shadow
301
302# Pat on the back.
303md_congrats
304
305# ALL DONE!
306exit 0
307