summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/archdep
blob: 29352833c181340bbeae7aa369581a86f96ef303 (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
75
76
77
78
79
80
81
#!/bin/sh
#
# $FreeBSD$
#

# PROVIDE: archdep
# REQUIRE: LOGIN
# BEFORE: abi
# KEYWORD: FreeBSD

. /etc/rc.subr

name=archdep
load_rc_config $name

# should we print out unaligned access warnings?
#
unaligned_warnings()
{
	if ! checkyesno unaligned_print; then
		sysctl machdep.unaligned_print=0
	fi
}

# Alpha OSF/1 binary emulation
#
osf1_compat()
{
	if checkyesno osf1_enable; then
		echo -n ' OSF/1'
		if ! kldstat -v | grep osf1_ecoff > /dev/null; then
			kldload osf1 > /dev/null 2>&1
		fi
	fi
}

# SCO binary emulation
#
ibcs2_compat()
{
	if checkyesno ibcs2_enable; then
		echo -n ' ibcs2'
		kldload ibcs2 > /dev/null 2>&1
		case ${ibcs2_loaders} in
		[Nn][Oo])
			;;
		*)
			for i in ${ibcs2_loaders}; do
				kldload ibcs2_$i > /dev/null 2>&1
			done
			;;
		esac
	fi
}

# X-10 Daemon
#
x10_daemon()
{
	if checkyesno xtend_enable; then
		echo -n ' xtend'
		/usr/libexec/xtend
	fi
}

_arch=`${SYSCTL_N} hw.machine`
echo -n "Initial $_arch initialization:"
case $_arch in
i386)
	ibcs2_compat
	x10_daemon
	;;
alpha)
	osf1_compat
	unaligned_warnings
	;;
ia64)
	unaligned_warnings
	;;
esac
echo '.'
OpenPOWER on IntegriCloud