1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
# $OpenBSD: install.md,v 1.35 2022/09/26 00:20:14 kettenis Exp $
#
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
#
# This code is derived from software contributed to The NetBSD Foundation
# by Jason R. Thorpe.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
#
# machine dependent section of installation/upgrade script.
#
NCPU=$(sysctl -n hw.ncpufound)
MOUNT_ARGS_msdos="-o-l"
md_installboot() {
local _disk=/dev/$1 _mdec _plat
case $(sysctl -n machdep.compatible) in
apple,*) _plat=apple;;
pine64,pine64*(+)) _plat=pine64;;
raspberrypi,*) _plat=rpi;
esac
if ! installboot -r /mnt ${1}; then
echo "\nFailed to install bootblocks."
echo "You will not be able to boot OpenBSD from ${1}."
exit
fi
# Apply some final tweaks on selected platforms
_mdec=/usr/mdec/$_plat
case $_plat in
apple)
if [[ -d /etc/firmware/apple ]]; then
(cd /etc/firmware
pax -rw apple /mnt/etc/firmware)
fi
if [[ -d /etc/firmware/apple-bwfm ]]; then
(cd /etc/firmware
pax -rw apple-bwfm /mnt/etc/firmware)
fi
;;
pine64)
dd if=$_mdec/u-boot-sunxi-with-spl.bin of=${_disk}c \
bs=1024 seek=8 >/dev/null 2>&1
;;
rpi)
mount ${MOUNT_ARGS_msdos} ${_disk}i /mnt/mnt
cp $_mdec/{bootcode.bin,start*.elf,fixup*.dat,*.dtb} /mnt/mnt/
cp $_mdec/u-boot.bin /mnt/mnt/
mkdir -p /mnt/mnt/overlays
cp $_mdec/disable-bt.dtbo /mnt/mnt/overlays
if [[ ! -f /mnt/mnt/config.txt ]]; then
cat > /mnt/mnt/config.txt<<-__EOT
arm_64bit=1
enable_uart=1
dtoverlay=disable-bt
kernel=u-boot.bin
__EOT
fi
umount /mnt/mnt
;;
esac
}
md_prep_fdisk() {
local _disk=$1 _d _type=MBR
local bootparttype="C"
local bootsectorstart="32768"
local bootsectorsize="32768"
local bootfstype="msdos"
case $(sysctl -n machdep.compatible) in
openbsd,acpi) bootsectorsize=532480;;
esac
while :; do
_d=whole
if disk_has $_disk gpt; then
_type=GPT
fdisk $_disk
elif disk_has $_disk mbr; then
fdisk $_disk
else
echo "MBR has invalid signature; not showing it."
fi
ask "Use (W)hole disk or (E)dit the ${_type}?" $_d
case $resp in
[wW]*)
echo -n "Creating a ${bootfstype} partition and an OpenBSD partition for rest of $_disk..."
if disk_has $_disk gpt apfsisc; then
if [[ $_disk == $ROOTDISK ]]; then
fdisk -Ay -b "${bootsectorsize}" ${_disk} >/dev/null
else
fdisk -Ay ${_disk} >/dev/null
fi
elif disk_has $_disk gpt; then
if [[ $_disk == $ROOTDISK ]]; then
fdisk -gy -b "${bootsectorsize}" ${_disk} >/dev/null
installboot -p $_disk
else
fdisk -gy ${_disk} >/dev/null
fi
else
fdisk -iy -b "${bootsectorsize}@${bootsectorstart}:${bootparttype}" ${_disk} >/dev/null
installboot -p $_disk
fi
echo "done."
return ;;
[eE]*)
if disk_has $_disk gpt; then
# Manually configure the GPT.
cat <<__EOT
You will now create two GPT partitions. The first must have an id
of 'EF' and be large enough to contain the OpenBSD boot programs,
at least 32768 blocks. The second must have an id of 'A6' and will
contain your OpenBSD data. Neither may overlap other partitions.
Inside the fdisk command, the 'manual' command describes the fdisk
commands in detail.
$(fdisk $_disk)
__EOT
fdisk -e $_disk
if ! disk_has $_disk gpt openbsd; then
echo -n "No OpenBSD partition in GPT,"
elif ! disk_has $_disk gpt efisys; then
echo -n "No EFI Sys partition in GPT,"
else
return
fi
else
# Manually configure the MBR.
cat <<__EOT
You will now create one MBR partition to contain your OpenBSD data
and one MBR partition on which the OpenBSD boot program is located.
Neither partition will overlap any other partition.
The OpenBSD MBR partition will have an id of 'A6' and the boot MBR
partition will have an id of '${bootparttype}' (${bootfstype}).
The boot partition will be at least 16MB and be the first 'MSDOS'
partition on the disk.
$(fdisk ${_disk})
__EOT
fdisk -e ${_disk}
disk_has $_disk mbr openbsd && return
echo -n "No OpenBSD partition in MBR,"
fi
echo "try again." ;;
esac
done
}
md_prep_disklabel() {
local _disk=$1 _f=/tmp/i/fstab.$1
md_prep_fdisk $_disk
disklabel_autolayout $_disk $_f || return
[[ -s $_f ]] && return
# Edit disklabel manually.
# Abandon all hope, ye who enter here.
disklabel -F $_f -E $_disk
}
md_congrats() {
}
md_consoleinfo() {
local _fw _fw2
DEFCONS=y
case $(scan_dmesg '/^\([^ ]*\).*: console.*std.*$/s//\1/p') in
wsdisplay0)
CTTY=ttyC0;;
*)
CTTY=console;;
esac
case $CSPEED in
9600|19200|38400|57600|115200|1500000)
;;
*)
CSPEED=115200;;
esac
_fw=$(dmesgtail | sed -n '\!^bwfm0: failed!{s!^.*/\(.*\),.*$!\1!p;q;}')
case $(sysctl -n machdep.compatible) in
apple,*)
_fw2=$(sysctl -n machdep.compatible | sed 's/.*apple,//')
make_dev sd0
if mount -o ro /dev/sd0l /mnt2 2>/dev/null; then
rm -rf /usr/mdec/rpi /etc/firmware/apple
rm -rf /etc/firmware/brcm /etc/firmware/apple-bwfm
if [[ -s /mnt2/vendorfw/firmware.tar ]]; then
tar -x -C /etc/firmware \
-f /mnt2/vendorfw/firmware.tar "*$_fw*" 2>/dev/null
tar -x -C /etc/firmware \
-f /mnt2/vendorfw/firmware.tar "*$_fw2*" 2>/dev/null
mv /etc/firmware/brcm /etc/firmware/apple-bwfm 2>/dev/null
fi
umount /mnt2
fi
esac
}
|