Add apmd_enable and apmd_flags for the boot-time optinos.
Pointed out by: obrien Forgotten by: iwasaki
This commit is contained in:
parent
3d13ca80ea
commit
6f0b5cda2f
@ -9,7 +9,7 @@
|
||||
#
|
||||
# All arguments must be in double or single quotes.
|
||||
#
|
||||
# $Id: rc.conf,v 1.17 1999/07/08 18:56:04 peter Exp $
|
||||
# $Id: rc.conf,v 1.18 1999/07/09 11:19:01 sheldonh Exp $
|
||||
|
||||
##############################################################
|
||||
### Important initial Boot-time options ####################
|
||||
@ -17,6 +17,8 @@
|
||||
|
||||
swapfile="NO" # Set to name of swapfile if aux swapfile desired.
|
||||
apm_enable="NO" # Set to YES if you want APM enabled.
|
||||
apmd_enable="NO" # Set to YES if you want APM daemon enabled.
|
||||
apmd_flags="" # Additional flags for apmd.
|
||||
pccard_enable="NO" # Set to YES if you want to configure PCCARD devices.
|
||||
pccard_mem="DEFAULT" # If pccard_enable=YES, this is card memory address.
|
||||
pccard_ifconfig="NO" # Specialized pccard ethernet configuration (or NO).
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: rc.i386,v 1.39 1999/01/30 07:22:29 newton Exp $
|
||||
# $Id: rc.i386,v 1.40 1999/07/10 18:02:42 iwasaki Exp $
|
||||
# Do i386 specific processing
|
||||
#
|
||||
|
||||
@ -11,7 +11,7 @@ if [ "X$apm_enable" = X"YES" ] ; then
|
||||
fi
|
||||
|
||||
if [ "X$apmd_enable" = X"YES" ] ; then
|
||||
echo -n ' apmd'; apmd
|
||||
echo -n ' apmd'; apmd ${apmd_flags}
|
||||
fi
|
||||
|
||||
# Start the SCO binary emulation if requested.
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: rc.i386,v 1.39 1999/01/30 07:22:29 newton Exp $
|
||||
# $Id: rc.i386,v 1.40 1999/07/10 18:02:42 iwasaki Exp $
|
||||
# Do i386 specific processing
|
||||
#
|
||||
|
||||
@ -11,7 +11,7 @@ if [ "X$apm_enable" = X"YES" ] ; then
|
||||
fi
|
||||
|
||||
if [ "X$apmd_enable" = X"YES" ] ; then
|
||||
echo -n ' apmd'; apmd
|
||||
echo -n ' apmd'; apmd ${apmd_flags}
|
||||
fi
|
||||
|
||||
# Start the SCO binary emulation if requested.
|
||||
|
Loading…
Reference in New Issue
Block a user