install.md revision 1.19
1#	$OpenBSD: install.md,v 1.19 2018/01/18 14:04:04 visa Exp $
2#
3# Copyright (c) 1996 The NetBSD Foundation, Inc.
4# All rights reserved.
5#
6# This code is derived from software contributed to The NetBSD Foundation
7# by Jason R. Thorpe.
8#
9# Redistribution and use in source and binary forms, with or without
10# modification, are permitted provided that the following conditions
11# are met:
12# 1. Redistributions of source code must retain the above copyright
13#    notice, this list of conditions and the following disclaimer.
14# 2. Redistributions in binary form must reproduce the above copyright
15#    notice, this list of conditions and the following disclaimer in the
16#    documentation and/or other materials provided with the distribution.
17#
18# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
22# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28# POSSIBILITY OF SUCH DAMAGE.
29#
30#
31# machine dependent section of installation/upgrade script.
32#
33
34MDDKDEVS='/^[sw]d[0-9] /s/ .*//p;/^octcf[0-9] /s/ .*//p'
35NCPU=$(sysctl -n hw.ncpufound)
36
37md_installboot() {
38	local _disk=$1
39	local _kernel=/mnt/bsd
40
41	if [[ -f /mnt/bsd.mp ]] && ((NCPU > 1)); then
42		_kernel=/mnt/bsd.mp
43	fi
44
45	if mount -t msdos /dev/${_disk}i /mnt2 && \
46	   cp $_kernel /mnt2/bsd && cp /mnt/bsd.rd /mnt2/bsd.rd; then
47		umount /mnt2
48		return
49	fi
50
51	echo "Failed to install bootblocks."
52	echo "You will not be able to boot OpenBSD from $_disk."
53	exit
54}
55
56md_prep_fdisk() {
57	local _disk=$1 _q _d
58
59	while :; do
60		_d=whole
61		if disk_has $_disk mbr; then
62			fdisk $_disk
63			if disk_has $_disk mbr openbsd; then
64				_q=", use the (O)penBSD area"
65				_d=OpenBSD
66			fi
67		else
68			echo "MBR has invalid signature; not showing it."
69		fi
70		ask "Use (W)hole disk$_q or (E)dit the MBR?" "$_d"
71		case $resp in
72		[wW]*)
73			echo -n "Creating a FAT partition and an OpenBSD partition for rest of $_disk..."
74			fdisk -e ${_disk} <<__EOT >/dev/null
75reinit
76e 0
77C
78n
7964
8065536
81f 0
82e 3
83A6
84n
8565600
86
87write
88quit
89__EOT
90			echo "done."
91			disklabel $_disk 2>/dev/null | grep -q "^  i:" || disklabel -w -d $_disk
92			newfs -t msdos ${_disk}i
93			return ;;
94		[eE]*)
95			# Manually configure the MBR.
96			cat <<__EOT
97
98You will now create one MBR partition to contain your OpenBSD data
99and one MBR partition on which kernels are located which are loaded
100by U-Boot. Neither partition will overlap any other partition.
101
102The OpenBSD MBR partition will have an id of 'A6' and the boot MBR
103partition will have an id of 'C' (MSDOS). The boot partition will be
104at least 32MB and be the first 'MSDOS' partition on the disk.
105
106$(fdisk ${_disk})
107__EOT
108			fdisk -e ${_disk}
109			disk_has $_disk mbr openbsd && return
110			echo No OpenBSD partition in MBR, try again. ;;
111		[oO]*)
112			[[ $_d == OpenBSD ]] || continue
113			return ;;
114		esac
115	done
116}
117
118md_prep_disklabel() {
119	local _disk=$1 _f=/tmp/i/fstab.$1
120
121	md_prep_fdisk $_disk
122
123	disklabel_autolayout $_disk $_f || return
124	[[ -s $_f ]] && return
125
126	# Edit disklabel manually.
127	# Abandon all hope, ye who enter here.
128	disklabel -F $_f -E $_disk
129}
130
131md_congrats() {
132	cat <<__EOT
133
134INSTALL.$ARCH describes how to configure U-Boot to boot OpenBSD.
135__EOT
136}
137
138md_consoleinfo() {
139}
140