rc.conf uses renamed/moved kernel cmdline parser

This commit is contained in:
Simo Leone 2011-03-03 02:44:55 -08:00 committed by Gerardo Exequiel Pozzi
parent 8ee0dd8c39
commit 6eed465138

View File

@ -1,19 +1,19 @@
# #
# /etc/rc.conf - Main Configuration for Arch Linux # /etc/rc.conf - Main Configuration for Arch Linux
. /etc/archiso/functions . /etc/rc.d/functions
LOCALE_DEFAULT="en_US.UTF-8" LOCALE_DEFAULT="en_US.UTF-8"
CLOCK_DEFAULT="" CLOCK_DEFAULT=""
TIMEZONE_DEFAULT="" TIMEZONE_DEFAULT=""
KEYMAP_DEFAULT="us" KEYMAP_DEFAULT="us"
LOCALE="$(cmdline_param locale ${LOCALE_DEFAULT})" LOCALE="$(kernel_cmdline locale ${LOCALE_DEFAULT})"
HARDWARECLOCK="$(cmdline_param clock ${CLOCK_DEFAULT})" HARDWARECLOCK="$(kernel_cmdline clock ${CLOCK_DEFAULT})"
TIMEZONE="$(cmdline_param timezone ${TIMEZONE_DEFAULT})" TIMEZONE="$(kernel_cmdline timezone ${TIMEZONE_DEFAULT})"
KEYMAP="$(cmdline_param keymap ${KEYMAP_DEFAULT})" KEYMAP="$(kernel_cmdline keymap ${KEYMAP_DEFAULT})"
CONSOLEFONT="$(cmdline_param consolefont)" CONSOLEFONT="$(kernel_cmdline consolefont)"
CONSOLEMAP="$(cmdline_param consolemap)" CONSOLEMAP="$(kernel_cmdline consolemap)"
USECOLOR="yes" USECOLOR="yes"
MOD_AUTOLOAD="yes" MOD_AUTOLOAD="yes"