summaryrefslogtreecommitdiffstats
path: root/etc/etc.i386
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.i386
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.i386')
-rw-r--r--etc/etc.i386/rc.i38648
1 files changed, 0 insertions, 48 deletions
diff --git a/etc/etc.i386/rc.i386 b/etc/etc.i386/rc.i386
deleted file mode 100644
index 5ff9f05..0000000
--- a/etc/etc.i386/rc.i386
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/sh -
-#
-# $FreeBSD$
-# Do i386 specific processing
-#
-
-echo -n 'Initial rc.i386 initialization:'
-
-case ${apm_enable} in
-[Yy][Ee][Ss])
- echo -n ' apm'
- apm -e enable > /dev/null 2>&1
- APM_DONE=yes
- ;;
-esac
-
-case ${apmd_enable} in
-[Yy][Ee][Ss])
- case ${APM_DONE} in
- '')
- echo -n ' apm'
- apm -e enable > /dev/null 2>&1
- ;;
- esac
-
- echo -n ' apmd'; apmd ${apmd_flags}
- ;;
-esac
-
-# Start the SCO binary emulation if requested.
-#
-case ${ibcs2_enable} in
-[Yy][Ee][Ss])
- 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
- ;;
-esac
-
-echo '.'
OpenPOWER on IntegriCloud