Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / etc / etc.alpha / rc.alpha
1 #!/bin/sh -
2 #
3 # $FreeBSD: src/etc/etc.alpha/rc.alpha,v 1.7.2.5 2001/12/19 17:52:18 ru Exp $
4 # $DragonFly: src/etc/etc.alpha/Attic/rc.alpha,v 1.2 2003/06/17 04:24:47 dillon Exp $
5 #       Do alpha specific processing
6 #
7
8 echo -n 'Initial rc.alpha initialization:'
9
10 # Start the Alpha OSF/1 binary compatibility if requested.
11 #
12 case ${osf1_enable} in
13 [Yy][Ee][Ss])
14         echo -n ' OSF/1'
15         if ! kldstat -v | grep osf1_ecoff > /dev/null; then
16                 kldload osf1 > /dev/null 2>&1
17         fi
18         ;;
19 esac
20
21 # knob for wether or not we should print out unaligned access warnings
22 #
23 case ${unaligned_print} in
24 [Nn][Oo])
25        sysctl machdep.unaligned_print=0
26        ;;
27 esac
28
29 echo '.'