aboutsummaryrefslogtreecommitdiff
path: root/rc.conf
diff options
context:
space:
mode:
authorJudd Vinet <judd@archlinux.org>2003-05-23 23:58:57 +0000
committerJudd Vinet <judd@archlinux.org>2003-05-23 23:58:57 +0000
commitdf91d849d2c19bd070473da49dd8befc7aae978c (patch)
tree8e29f1f1c89388b1afb170acf49d694bad755fb4 /rc.conf
parentead9f8db5fe817f019512681d5169dffad705357 (diff)
downloadinitscripts-df91d849d2c19bd070473da49dd8befc7aae978c.tar.xz
upgpkg: initscripts 0.5
Diffstat (limited to 'rc.conf')
-rw-r--r--rc.conf14
1 files changed, 5 insertions, 9 deletions
diff --git a/rc.conf b/rc.conf
index 4c1be9c..000bad4 100644
--- a/rc.conf
+++ b/rc.conf
@@ -1,5 +1,5 @@
#
-# /etc/rc.conf
+# /etc/rc.conf - Main Configuration for Arch Linux
#
#
@@ -16,7 +16,6 @@ HARDWARECLOCK="localtime"
#
HOSTNAME="myhost"
-
#
# Module to load at boot-up (in this order)
# (prefix a module with a ! to disable it)
@@ -49,13 +48,10 @@ ROUTES=(!gateway)
DAEMONS=(!pcmcia network crond inetd)
#
-# PCMCIA
+# Load any configuration settings in /etc/conf.d
#
-# Should be either i82365 or tcic
-PCIC=i82365
-PCIC_OPTS=
-CORE_OPTS=
-CARDMGR_OPTS=
-SCHEME=
+for cfg in /etc/conf.d/*; do
+ [ -r $cfg ] && source $cfg
+done
# End of file