install.md revision 1.1
1#	$OpenBSD: install.md,v 1.1 2013/03/26 18:03:53 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
96(C)ustom layout?" a
97			case $resp in
98			a*|A*)	_op=-w ; AUTOROOT=y ;;
99			e*|E*)	_op=-E ;;
100			c*|C*)	break ;;
101			*)	continue ;;
102			esac
103			disklabel $FSTABFLAG $_f $_op -A $_disk
104			return
105		done
106	fi
107
108	cat <<__EOT
109
110You will now create an OpenBSD disklabel inside the OpenBSD MBR
111partition. The disklabel defines how OpenBSD splits up the MBR partition
112into OpenBSD partitions in which filesystems and swap space are created.
113You must provide each filesystem's mountpoint in this program.
114
115The offsets used in the disklabel are ABSOLUTE, i.e. relative to the
116start of the disk, NOT the start of the OpenBSD MBR partition.
117
118__EOT
119
120	disklabel $FSTABFLAG $_f -E $_disk
121}
122
123md_congrats() {
124}
125
126md_consoleinfo() {
127}
128