diff options
| author | Andrew Gallatin <gallatin@FreeBSD.org> | 1999-12-15 14:27:59 +0000 |
|---|---|---|
| committer | Andrew Gallatin <gallatin@FreeBSD.org> | 1999-12-15 14:27:59 +0000 |
| commit | 86298776d222798a69ddaa0042d10c7387433edb (patch) | |
| tree | 6671e91406fb39edadc7667dcedcf59025fa1eaa /etc | |
| parent | b8fe6668ab7b51eb9c82b2d994ba8dec4a9dd987 (diff) | |
Notes
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/defaults/rc.conf | 1 | ||||
| -rw-r--r-- | etc/etc.alpha/rc.alpha | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index 3336cc21d583..65a6bc3dcb79 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -220,6 +220,7 @@ accounting_enable="NO" # Turn on process accounting (or NO). ibcs2_enable="NO" # Ibcs2 (SCO) emulation loaded at startup (or NO). linux_enable="NO" # Linux binary compatibility loaded at startup (or NO). svr4_enable="NO" # SysVR4 emulation loaded at startup (or NO). +osf1_enable="NO" # Alpha OSF/1 emulation loaded at startup (or NO). rand_irqs="NO" # Stir the entropy pool (like "5 11" or NO). clear_tmp_enable="NO" # Clear /tmp at startup. ldconfig_paths="/usr/lib/compat /usr/X11R6/lib /usr/local/lib" diff --git a/etc/etc.alpha/rc.alpha b/etc/etc.alpha/rc.alpha index 753e7228eabe..882197aae971 100644 --- a/etc/etc.alpha/rc.alpha +++ b/etc/etc.alpha/rc.alpha @@ -5,6 +5,15 @@ # 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'; osf1 > /dev/null 2>&1 + ;; +esac + echo '.' ########################################################################## |
