aboutsummaryrefslogtreecommitdiff
path: root/etc/etc.i386
diff options
context:
space:
mode:
authorMark Newton <newton@FreeBSD.org>1999-01-30 07:22:29 +0000
committerMark Newton <newton@FreeBSD.org>1999-01-30 07:22:29 +0000
commit8a94c0e74754de97fee34b9d63e78a431f034ae8 (patch)
treee9b377d6c0fad5b8eaaabd97c5f8f37021912068 /etc/etc.i386
parent73d5e7854fbea48ac091dd71eb26ae6d3a91b5d8 (diff)
downloadsrc-8a94c0e74754de97fee34b9d63e78a431f034ae8.tar.gz
src-8a94c0e74754de97fee34b9d63e78a431f034ae8.zip
Added a knob for svr4 to rc.conf (and associated support in rc.i386)
Suggested by: jkh
Notes
Notes: svn path=/head/; revision=43418
Diffstat (limited to 'etc/etc.i386')
-rw-r--r--etc/etc.i386/rc.i3867
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/etc.i386/rc.i386 b/etc/etc.i386/rc.i386
index b42161ec50ce..219eb09f6d7a 100644
--- a/etc/etc.i386/rc.i386
+++ b/etc/etc.i386/rc.i386
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.i386,v 1.37 1998/11/11 05:25:32 peter Exp $
+# $Id: rc.i386,v 1.38 1999/01/29 18:09:38 yokota Exp $
# Do i386 specific processing
#
@@ -20,6 +20,11 @@ if [ "X${linux_enable}" = X"YES" ]; then
echo -n ' linux'; linux > /dev/null 2>&1
fi
+# Start the SysVR4 binary emulation if requested.
+if [ "X${svr4_enable}" = X"YES" ]; then
+ echo -n ' svr4'; svr4 > /dev/null 2>&1
+fi
+
if [ "X${xtend_enable}" = X"YES" ]; then
echo -n ' xtend'; /usr/libexec/xtend
fi