install.md revision 1.2
1#	$OpenBSD: install.md,v 1.2 2013/03/27 19:46:35 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}
39
40md_prep_fdisk() {
41	local _disk=$1 _q _d
42
43	while :; do
44		_d=whole
45		if [[ -n $(fdisk $_disk | grep 'Signature: 0xAA55') ]]; then
46			fdisk $_disk
47			if [[ -n $(fdisk $_disk | grep '^..: A6 ') ]]; then
48				_q=", use the (O)penBSD area,"
49				_d=OpenBSD
50			fi
51		else
52			echo "MBR has invalid signature; not showing it."
53		fi
54		ask "Use (W)hole disk$_q or (E)dit the MBR?" "$_d"
55		case $resp in
56		w*|W*)
57			echo -n "Setting OpenBSD MBR partition to whole $_disk..."
58			fdisk -e ${_disk} <<__EOT >/dev/null
59reinit
60update
61write
62quit
63__EOT
64			echo "done."
65			return ;;
66		e*|E*)
67			# Manually configure the MBR.
68			cat <<__EOT
69
70You will now create a single MBR partition to contain your OpenBSD data. This
71partition must have an id of 'A6'; must *NOT* overlap other partitions; and
72must be marked as the only active partition.  Inside the fdisk command, the
73'manual' command describes all the fdisk commands in detail.
74
75$(fdisk ${_disk})
76__EOT
77			fdisk -e ${_disk}
78			[[ -n $(fdisk $_disk | grep ' A6 ') ]] && return
79			echo No OpenBSD partition in MBR, try again. ;;
80		o*|O*)	return ;;
81		esac
82	done
83}
84
85md_prep_disklabel() {
86	local _disk=$1 _f _op
87
88	md_prep_fdisk $_disk
89
90	_f=/tmp/fstab.$_disk
91	if [[ $_disk == $ROOTDISK ]]; then
92		while :; do
93			echo "The auto-allocated layout for $_disk is:"
94			disklabel -h -A $_disk | egrep "^#  |^  [a-p]:"
95			ask "Use (A)uto layout, (E)dit auto layout, or create (C)ustom layout?" a
96			case $resp in
97			a*|A*)	_op=-w ; AUTOROOT=y ;;
98			e*|E*)	_op=-E ;;
99			c*|C*)	break ;;
100			*)	continue ;;
101			esac
102			disklabel $FSTABFLAG $_f $_op -A $_disk
103			return
104		done
105	fi
106
107	cat <<__EOT
108
109You will now create an OpenBSD disklabel inside the OpenBSD MBR
110partition. The disklabel defines how OpenBSD splits up the MBR partition
111into OpenBSD partitions in which filesystems and swap space are created.
112You must provide each filesystem's mountpoint in this program.
113
114The offsets used in the disklabel are ABSOLUTE, i.e. relative to the
115start of the disk, NOT the start of the OpenBSD MBR partition.
116
117__EOT
118
119	disklabel $FSTABFLAG $_f -E $_disk
120}
121
122md_congrats() {
123}
124
125md_consoleinfo() {
126}
127