2009-10-08 03:40:19 +00:00
|
|
|
#
|
2011-05-26 04:45:00 +00:00
|
|
|
# /etc/rc.conf - Main Configuration for Arch Linux ARM
|
2009-10-08 03:40:19 +00:00
|
|
|
#
|
|
|
|
|
2011-01-02 05:25:35 +00:00
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# LOCALIZATION
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
#
|
2011-05-26 04:45:00 +00:00
|
|
|
# LOCALE: available languages can be listed with the 'locale -a' command
|
|
|
|
# DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
|
|
|
|
# startup and during the boot process. If set to 'no', the C locale is used.
|
|
|
|
# HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
|
|
|
|
# in the hardware clock being left untouched (useful for virtualization)
|
|
|
|
# Note: Using "localtime" is discouraged.
|
|
|
|
# TIMEZONE: timezones are found in /usr/share/zoneinfo
|
|
|
|
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
|
|
|
|
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
|
|
|
|
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
|
|
|
|
# USECOLOR: use ANSI color sequences in startup messages
|
|
|
|
# VERBOSE: Verbose level (from 1 to 8). man 3 syslog for level info
|
|
|
|
#
|
2009-10-08 03:40:19 +00:00
|
|
|
LOCALE="en_US.UTF-8"
|
2011-05-26 04:45:00 +00:00
|
|
|
DAEMON_LOCALE="no"
|
|
|
|
HARDWARECLOCK="UTC"
|
2009-01-03 05:38:53 +00:00
|
|
|
TIMEZONE="America/Chicago"
|
2009-10-08 03:40:19 +00:00
|
|
|
KEYMAP="us"
|
|
|
|
CONSOLEFONT=
|
|
|
|
CONSOLEMAP=
|
|
|
|
USECOLOR="yes"
|
2011-05-26 04:45:00 +00:00
|
|
|
VERBOSE="3"
|
2009-10-08 03:40:19 +00:00
|
|
|
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# HARDWARE
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
#
|
2011-06-18 04:44:09 +00:00
|
|
|
# MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
|
|
|
|
# Replace every !module by an entry as on the following line in a file in
|
|
|
|
# /etc/modprobe.d:
|
|
|
|
# blacklist module
|
|
|
|
# See "man modprobe.conf" for details.
|
2009-10-08 03:40:19 +00:00
|
|
|
#
|
|
|
|
MODULES=()
|
|
|
|
|
2011-05-26 04:45:00 +00:00
|
|
|
# Udev settle timeout (default to 30)
|
|
|
|
UDEV_TIMEOUT=30
|
|
|
|
|
|
|
|
# Scan for FakeRAID (dmraid) Volumes at startup
|
|
|
|
USEDMRAID="no"
|
|
|
|
|
|
|
|
# Scan for BTRFS volumes at startup
|
|
|
|
USEBTRFS="no"
|
|
|
|
|
2009-10-08 03:40:19 +00:00
|
|
|
# Scan for LVM volume groups at startup, required if you use LVM
|
|
|
|
USELVM="no"
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# NETWORKING
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
|
|
|
|
#
|
2011-05-26 04:45:00 +00:00
|
|
|
HOSTNAME="alarm"
|
2009-10-08 03:40:19 +00:00
|
|
|
|
2011-06-18 04:44:09 +00:00
|
|
|
# Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
|
|
|
|
#
|
|
|
|
# Wired network setup
|
|
|
|
# - interface: name of device (required)
|
|
|
|
# - address: IP address (leave blank for DHCP)
|
|
|
|
# - netmask: subnet mask (ignored for DHCP)
|
|
|
|
# - gateway: default route (ignored for DHCP)
|
|
|
|
#
|
|
|
|
# Static IP example
|
|
|
|
# interface=eth0
|
|
|
|
# address=192.168.0.2
|
|
|
|
# netmask=255.255.255.0
|
|
|
|
# gateway=192.168.0.1
|
|
|
|
#
|
|
|
|
# DHCP example
|
|
|
|
# interface=eth0
|
|
|
|
# address=
|
|
|
|
# netmask=
|
|
|
|
# gateway=
|
2009-11-01 17:15:13 +00:00
|
|
|
|
2011-06-18 04:44:09 +00:00
|
|
|
interface=
|
|
|
|
address=
|
|
|
|
netmask=
|
|
|
|
gateway=
|
2011-05-26 04:45:00 +00:00
|
|
|
|
2010-07-28 19:27:38 +00:00
|
|
|
# Setting this to "yes" will skip network shutdown.
|
|
|
|
# This is required if your root device is on NFS.
|
|
|
|
NETWORK_PERSIST="no"
|
|
|
|
|
2011-06-18 04:44:09 +00:00
|
|
|
# Enable these netcfg profiles at boot-up. These are useful if you happen to
|
|
|
|
# need more advanced network features than the simple network service
|
|
|
|
# supports, such as multiple network configurations (ie, laptop users)
|
2009-10-08 03:40:19 +00:00
|
|
|
# - set to 'menu' to present a menu during boot-up (dialog package required)
|
|
|
|
# - prefix an entry with a ! to disable it
|
|
|
|
#
|
|
|
|
# Network profiles are found in /etc/network.d
|
|
|
|
#
|
2011-06-18 04:44:09 +00:00
|
|
|
# This requires the netcfg package
|
2009-10-08 03:40:19 +00:00
|
|
|
#
|
|
|
|
#NETWORKS=(main)
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# DAEMONS
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Daemons to start at boot-up (in this order)
|
|
|
|
# - prefix a daemon with a ! to disable it
|
|
|
|
# - prefix a daemon with a @ to start it up in the background
|
|
|
|
#
|
2011-05-26 04:45:00 +00:00
|
|
|
# If something other takes care of your hardware clock (ntpd, dual-boot...)
|
|
|
|
# you should disable 'hwclock' here.
|
|
|
|
#
|
|
|
|
DAEMONS=(hwclock syslog-ng network netfs crond sshd)
|