blob: ecde18ef3ba14dd75e7d5f02936c21864139f2b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh -
#
# $FreeBSD$
# Do ia64 specific processing
#
echo -n 'Initial rc.ia64 initialization:'
# knob for wether or not we should print out unaligned access warnings
#
case ${unaligned_print} in
[Nn][Oo])
sysctl machdep.unaligned_print=0
;;
esac
echo '.'
|