install.md revision 1.3
1#	$OpenBSD: install.md,v 1.3 2013/04/08 09:45:57 jasper Exp $
2#
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#
19# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
23# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29# POSSIBILITY OF SUCH DAMAGE.
30#
31#
32# machine dependent section of installation/upgrade script.
33#
34
35MDDKDEVS='/^[sw]d[0-9] /s/ .*//p;/^octcf[0-9] /s/ .*//p'
36
37md_installboot() {
38	local _disk=$1
39
40	if mount -t msdos /dev/${_disk}i /mnt2 && \
41	   cp /mnt/bsd /mnt2/bsd && cp /mnt/bsd.rd /mnt2/bsd.rd; then
42		umount /mnt2
43		return
44	fi
45
46	echo "Failed to install bootblocks."
47	echo "You will not be able to boot OpenBSD from $_disk."
48	exit
49}
50
51md_prep_fdisk() {
52	local _disk=$1 _q _d
53
54	while :; do
55		_d=whole
56		if [[ -n $(fdisk $_disk | grep 'Signature: 0xAA55') ]]; then
57			fdisk $_disk
58			if [[ -n $(fdisk $_disk | grep '^..: A6 ') ]]; then
59				_q=", use the (O)penBSD area,"
60				_d=OpenBSD
61			fi
62		else
63			echo "MBR has invalid signature; not showing it."
64		fi
65		ask "Use (W)hole disk$_q or (E)dit the MBR?" "$_d"
66		case $resp in
67		w*|W*)
68			echo -n "Creating a FAT partition and an OpenBSD partition for rest of $_disk..."
69			fdisk -e ${_disk} <<__EOT >/dev/null
70reinit
71e 0
72C
73n
7464
7532768
76f 0
77e 3
78A6
79n
8032832
81
82write
83quit
84__EOT
85			echo "done."
86			disklabel $_disk 2>/dev/null | grep -q "^  i:" || disklabel -w -d $_disk
87			newfs -t msdos ${_disk}i
88			return ;;
89		e*|E*)
90			# Manually configure the MBR.
91			cat <<__EOT
92
93You will now create a single MBR partition to contain your OpenBSD data. This
94partition must have an id of 'A6'; must *NOT* overlap other partitions; and
95must be marked as the only active partition.  Inside the fdisk command, the
96'manual' command describes all the fdisk commands in detail.
97
98$(fdisk ${_disk})
99__EOT
100			fdisk -e ${_disk}
101			[[ -n $(fdisk $_disk | grep ' A6 ') ]] && return
102			echo No OpenBSD partition in MBR, try again. ;;
103		o*|O*)	return ;;
104		esac
105	done
106}
107
108md_prep_disklabel() {
109	local _disk=$1 _f _op
110
111	md_prep_fdisk $_disk
112
113	_f=/tmp/fstab.$_disk
114	if [[ $_disk == $ROOTDISK ]]; then
115		while :; do
116			echo "The auto-allocated layout for $_disk is:"
117			disklabel -h -A $_disk | egrep "^#  |^  [a-p]:"
118			ask "Use (A)uto layout, (E)dit auto layout, or create (C)ustom layout?" a
119			case $resp in
120			a*|A*)	_op=-w ; AUTOROOT=y ;;
121			e*|E*)	_op=-E ;;
122			c*|C*)	break ;;
123			*)	continue ;;
124			esac
125			disklabel $FSTABFLAG $_f $_op -A $_disk
126			return
127		done
128	fi
129
130	cat <<__EOT
131
132You will now create an OpenBSD disklabel inside the OpenBSD MBR
133partition. The disklabel defines how OpenBSD splits up the MBR partition
134into OpenBSD partitions in which filesystems and swap space are created.
135You must provide each filesystem's mountpoint in this program.
136
137The offsets used in the disklabel are ABSOLUTE, i.e. relative to the
138start of the disk, NOT the start of the OpenBSD MBR partition.
139
140__EOT
141
142	disklabel $FSTABFLAG $_f -E $_disk
143}
144
145md_congrats() {
146	cat <<__EOT
147
148	INSTALL.$ARCH describes how to configure U-Boot to boot OpenBSD.
149__EOT
150}
151
152md_consoleinfo() {
153}
154