This package contains all files required for booting the lsXL linux system built through xbps. Currently it uses the NetBSD rc.d(8) system, sysvinit and modified BSD style scripts modified from Arch linux. --HG-- extra : convert_revision : 4584be26dd672ba33f9b1d76534a22d4715664ea
27 lines
769 B
Text
Executable file
27 lines
769 B
Text
Executable file
#
|
|
# /etc/rc.conf - Main Configuration.
|
|
#
|
|
if [ -r /etc/defaults/rc.conf ]; then
|
|
. /etc/defaults/rc.conf
|
|
fi
|
|
#
|
|
# -----------------------------------------------------------------------
|
|
# LOCALIZATION
|
|
# -----------------------------------------------------------------------
|
|
#
|
|
# LOCALE: available languages can be listed with the 'locale -a' command
|
|
# HARDWARECLOCK: set to "UTC" or "localtime"
|
|
# TIMEZONE: timezones are found in /usr/share/zoneinfo
|
|
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
|
|
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
|
|
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
|
|
#
|
|
LOCALE="es_ES.utf-8"
|
|
HARDWARECLOCK="localtime"
|
|
TIMEZONE="Europe/Madrid"
|
|
KEYMAP="es"
|
|
CONSOLEFONT=
|
|
CONSOLEMAP=
|
|
|
|
USELVM="no"
|
|
HOSTNAME="xbps"
|