blob: fe775a8db41c51c58d4eb34997efd93df19316cd (
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
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
|
# $OpenBSD: install.md,v 1.1 2003/01/30 21:05:00 mickey Exp $
#
# machine dependent section of installation/upgrade script.
#
MDTERM=vt100
MDDISKDEVS='/^sd[0-9] /s/ .*//p'
MDCDDEVS='/^cd[0-9] /s/ .*//p'
ARCH=ARCH
md_set_term() {
}
md_installboot() {
local _rawdev _prefix
if [ -z "$1" ]; then
echo No disk device specified, you must run installboot manually.
return
fi
_rawdev=/dev/r${1}c
# use extracted mdec if it exists (may be newer)
if [ -e /mnt/usr/mdec/boot ]; then
_prefix=/mnt/usr/mdec
elif [ -e /usr/mdec/boot ]; then
_prefix=/usr/mdec
else
echo No boot block prototypes found, you must run installboot manually.
return
fi
echo Installing boot block...
/sbin/disklabel -B $1
}
md_checkfordisklabel() {
# $1 is the disk to check
local rval
disklabel $1 > /dev/null 2> /tmp/checkfordisklabel
if grep "no disk label" /tmp/checkfordisklabel; then
rval=1
elif grep "disk label corrupted" /tmp/checkfordisklabel; then
rval=2
else
rval=0
fi
rm -f /tmp/checkfordisklabel
return $rval
}
md_prep_disklabel()
{
local _disk=$1
md_checkfordisklabel $_disk
case $? in
0) ;;
1) echo WARNING: Disk $_disk has no label. You will be creating a new one.
echo
;;
2) echo WARNING: Label on disk $_disk is corrupted. You will be repairing.
echo
;;
esac
disklabel -W ${_disk}
disklabel -f /tmp/fstab.${_disk} -E ${_disk}
}
md_congrats() {
}
|