diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-09-28 02:15:25 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-09-28 02:15:25 +0000 |
commit | c464db595165a847e5fc81a57133f68a9c2e0ef8 (patch) | |
tree | 6419418b51e45d275e5d3ccf0a61dc3ae0697131 /default-config/etc/rc.conf | |
parent | 59ddc5be61a1ee5dadc32c8a2255931d62bbce2a (diff) | |
download | archiso32-c464db595165a847e5fc81a57133f68a9c2e0ef8.tar.xz |
git-svn-id: http://phraktured.net/archiso@13 00a9fe69-e71b-0410-bb23-df0e5024db41
Diffstat (limited to 'default-config/etc/rc.conf')
-rw-r--r-- | default-config/etc/rc.conf | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/default-config/etc/rc.conf b/default-config/etc/rc.conf index 1b8b9c9..ed069e4 100644 --- a/default-config/etc/rc.conf +++ b/default-config/etc/rc.conf @@ -1,12 +1,18 @@ # # /etc/rc.conf - Main Configuration for Arch Linux -LOCALE="##LOCALE##" +. /etc/archiso/functions + +LOCALE_DEFAULT="en_US.UTF-8" +TIMEZONE_DEFAULT="America/Chicago" +KEYMAP_DEFAULT="us" + +LOCALE="$(cmdline_param locale ${LOCALE_DEFAULT})" HARDWARECLOCK="UTC" -TIMEZONE="##TIMEZONE##" -KEYMAP="##KEYMAP##" -CONSOLEFONT="" -CONSOLEMAP="" +TIMEZONE="$(cmdline_param timezone ${TIMEZONE_DEFAULT})" +KEYMAP="$(cmdline_param keymap ${KEYMAP_DEFAULT})" +CONSOLEFONT="$(cmdline_param consolefont)" +CONSOLEMAP="$(cmdline_param consolefont)" USECOLOR="yes" MOD_AUTOLOAD="yes" |