aboutsummaryrefslogtreecommitdiff
path: root/rc.conf
diff options
context:
space:
mode:
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