| 1 |
uberlord |
2547 |
|
| 2 |
|
|
##############################################################################
|
| 3 |
|
|
# LINUX SPECIFIC OPTIONS
|
| 4 |
|
|
|
| 5 |
|
|
# This is the number of tty's used in most of the rc-scripts (like
|
| 6 |
|
|
# consolefont, numlock, etc ...)
|
| 7 |
uberlord |
2862 |
RC_TTY_NUMBER=12
|
| 8 |
uberlord |
2547 |
|
| 9 |
|
|
# RC_DOWN_INTERFACE allows you to specify if RC will bring the interface
|
| 10 |
|
|
# completely down when it stops. The default is yes, but there are some
|
| 11 |
|
|
# instances where you may not want this to happen such as using Wake On LAN.
|
| 12 |
|
|
RC_DOWN_INTERFACE="yes"
|
| 13 |
|
|
|
| 14 |
|
|
# RC_DOWN_HARDDISK allows you to specify if RC will put harddisks to
|
| 15 |
|
|
# standby mode when it stops.
|
| 16 |
|
|
RC_DOWN_HARDDISK="yes"
|
| 17 |
|
|
|
| 18 |
|
|
# Use this variable to control the /dev management behavior.
|
| 19 |
|
|
# auto - let the scripts figure out what's best at boot
|
| 20 |
|
|
# devfs - use devfs (requires sys-fs/devfsd)
|
| 21 |
uberlord |
3082 |
# mdev - use mdev (requires sys-apps/busybox)
|
| 22 |
uberlord |
2547 |
# udev - use udev (requires sys-fs/udev)
|
| 23 |
|
|
# static - let the user manage /dev (YOU need to create ALL device nodes)
|
| 24 |
|
|
RC_DEVICES="auto"
|
| 25 |
|
|
|
| 26 |
|
|
# UDEV OPTION:
|
| 27 |
|
|
# Set to "yes" if you want to save /dev to a tarball on shutdown
|
| 28 |
|
|
# and restore it on startup. This is useful if you have a lot of
|
| 29 |
|
|
# custom device nodes that udev does not handle/know about.
|
| 30 |
|
|
RC_DEVICE_TARBALL="no"
|
| 31 |
|
|
|
| 32 |
|
|
# RC_DMESG_LEVEL sets the level at which logging of messages is done to the
|
| 33 |
|
|
# console. See dmesg(8) for more info.
|
| 34 |
|
|
RC_DMESG_LEVEL="1"
|
| 35 |
|
|
|