diff options
author | Roy Marples <roy@marples.name> | 2007-12-27 16:54:10 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-12-27 16:54:10 +0000 |
commit | 68a42629d75f4a58b29b703f997e05d63c09a9a7 (patch) | |
tree | ec427ee66be90570b2de087f57ad66b2ea4db980 | |
parent | 6d23d11a902434aa1c1bc3885258e4baee6ff975 (diff) |
Add a misc var section and add unicode to it.
-rw-r--r-- | etc/rc.conf | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/etc/rc.conf b/etc/rc.conf index 22ed86d5..057d59df 100644 --- a/etc/rc.conf +++ b/etc/rc.conf @@ -41,9 +41,6 @@ rc_coldplug="YES" # This allows net.wlan and any service not matching net.* to be plugged. rc_plug_services="" -# Define network fstypes. Below is the default. -net_fs_list="afs cifs coda davfs fuse gfs ncpfs nfs nfs4 ocfs2 shfs smbfs" - # rc_force_auto tries its best to prevent user interaction during the boot and # shutdown process. For example, fsck will automatically be run or volumes # remounted to create proper directory trees. This feature can be dangerous @@ -56,6 +53,16 @@ rc_force_auto="NO" rc_logger="NO" ############################################################################## +# MISC CONFIGURATION VARIABLES +# There variables are shared between many init scripts + +# Set unicode to YES to turn on unicode support for keyboards and screens. +unicode="NO" + +# Network fstypes. Below is the default. +net_fs_list="afs cifs coda davfs fuse gfs ncpfs nfs nfs4 ocfs2 shfs smbfs" + +############################################################################## # SERVICE CONFIGURATION VARIABLES # These variables are documented here, but should be configured in # /etc/conf.d/foo for service foo and NOT enabled here unless you @@ -74,3 +81,4 @@ rc_logger="NO" #rc_use="net.eth0" #rc_after="clock" #rc_before="local" + |