blob: 96b5577caf7075c6f97d497fa10d7a8cb822fedc (
plain)
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
|
# $OpenBSD: install.md,v 1.29 2015/05/31 19:40:10 rpe Exp $
#
# machine dependent section of installation/upgrade script.
#
MDTERM=vt100
NCPU=$(sysctl -n hw.ncpufound)
((NCPU > 1)) && { DEFAULTSETS="bsd bsd.rd bsd.mp"; SANESETS="bsd bsd.mp"; }
md_installboot() {
if ! installboot -r /mnt ${1}; then
echo "\nFailed to install bootblocks."
echo "You will not be able to boot OpenBSD from ${1}."
exit
fi
}
md_prep_disklabel() {
local _disk=$1 _f=/tmp/fstab.$1
installboot $_disk
disklabel_autolayout $_disk $_f || return
[[ -s $_f ]] && return
cat <<__EOT
You will now create a OpenBSD disklabel on the disk. The disklabel defines
how OpenBSD splits up the disk into OpenBSD partitions in which filesystems
and swap space are created. You must provide each filesystem's mountpoint
in this program.
__EOT
disklabel $FSTABFLAG $_f -E $_disk
}
md_congrats() {
}
md_consoleinfo() {
}
|