summaryrefslogtreecommitdiffstats
path: root/etc/etc.alpha
diff options
context:
space:
mode:
authordougb <dougb@FreeBSD.org>2003-05-02 05:27:35 +0000
committerdougb <dougb@FreeBSD.org>2003-05-02 05:27:35 +0000
commitf30c2be11fd392aa4839da69c2fdb02378de5128 (patch)
tree5cf20dabe73b1b28170c4ad3440357817b0526be /etc/etc.alpha
parent47865226a5bd7d8a045e552f7a19507a92e7bf41 (diff)
downloadFreeBSD-src-f30c2be11fd392aa4839da69c2fdb02378de5128.zip
FreeBSD-src-f30c2be11fd392aa4839da69c2fdb02378de5128.tar.gz
Per previous announcement, remove the old version of the rc system.
All functionality from the previous system has been preserved, and users should still customize their system boot with the familiar methods, rc.conf, rc.conf.local, rc.firewall, sysctl.conf, etc. Users who have customized versions of scripts that have been removed should take great care when upgrading, since the compatibility code that used those old scripts has also been removed.
Diffstat (limited to 'etc/etc.alpha')
-rw-r--r--etc/etc.alpha/rc.alpha28
1 files changed, 0 insertions, 28 deletions
diff --git a/etc/etc.alpha/rc.alpha b/etc/etc.alpha/rc.alpha
deleted file mode 100644
index 9488e02..0000000
--- a/etc/etc.alpha/rc.alpha
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh -
-#
-# $FreeBSD$
-# Do alpha specific processing
-#
-
-echo -n 'Initial rc.alpha initialization:'
-
-# Start the Alpha OSF/1 binary compatibility if requested.
-#
-case ${osf1_enable} in
-[Yy][Ee][Ss])
- echo -n ' OSF/1'
- if ! kldstat -v | grep osf1_ecoff > /dev/null; then
- kldload osf1 > /dev/null 2>&1
- fi
- ;;
-esac
-
-# 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 '.'
OpenPOWER on IntegriCloud