1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-30 16:51:41 +00:00

Add an enable_osf1 knob to the alpha startup code

This commit is contained in:
Andrew Gallatin 1999-12-15 14:27:59 +00:00
parent b8fe6668ab
commit 86298776d2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54642
2 changed files with 10 additions and 0 deletions

View File

@ -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"

View File

@ -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 '.'
##########################################################################