index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-11-25 10:40:07 -0800 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-11-30 15:14:26 -0800 |
commit | 246a00412bcf15feedf6320fe10de6e545517b89 (patch) | |
tree | 94377634c0fd0f78557b79e52da470070e261966 /configs/syslinux-iso/overlay/etc/rc.conf | |
parent | f77ddc0e9ce71eced048139e51bf9540883fffcc (diff) |
-rw-r--r-- | configs/syslinux-iso/overlay/etc/rc.conf | 25 |
diff --git a/configs/syslinux-iso/overlay/etc/rc.conf b/configs/syslinux-iso/overlay/etc/rc.conf new file mode 100644 index 0000000..6b8e434 --- /dev/null +++ b/configs/syslinux-iso/overlay/etc/rc.conf @@ -0,0 +1,25 @@ +# +# /etc/rc.conf - Main Configuration for Arch Linux + +. /etc/archiso/functions + +LOCALE_DEFAULT="en_US.UTF-8" +CLOCK_DEFAULT="" +TIMEZONE_DEFAULT="" +KEYMAP_DEFAULT="us" + +LOCALE="$(cmdline_param locale ${LOCALE_DEFAULT})" +HARDWARECLOCK="$(cmdline_param clock ${CLOCK_DEFAULT})" +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" + +HOSTNAME="archiso" + +#TODO add more auto-daemons here, especially the live-cd specific stuff +DAEMONS=(syslog-ng network) +#TODO: auto-network find-disks find-user-home |