aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rc.conf10
-rwxr-xr-xrc.sysinit4
2 files changed, 11 insertions, 3 deletions
diff --git a/rc.conf b/rc.conf
index ad11b56..59fb626 100644
--- a/rc.conf
+++ b/rc.conf
@@ -5,11 +5,15 @@
#
# Localization
#
-# Note: HARDWARECLOCK is either "UTC" or "localtime"
+# HARDWARECLOCK: set to "UTC" or "localtime"
+# TIMEZONE: timezones are found in /usr/share/zoneinfo
+# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
+# CONSOLEFONT: fount in /usr/share/kbd/consolefonts (only needed for non-us)
#
-KEYMAP=us
-TIMEZONE=Canada/Pacific
HARDWARECLOCK="localtime"
+TIMEZONE=Canada/Pacific
+KEYMAP=us
+CONSOLEFONT=
#
# Networking
diff --git a/rc.sysinit b/rc.sysinit
index af74a1f..bd1d590 100755
--- a/rc.sysinit
+++ b/rc.sysinit
@@ -113,6 +113,10 @@ if [ "$KEYMAP" != "" ]; then
status "Loading Keyboard Map: $KEYMAP" /bin/loadkeys -q $KEYMAP
fi
+if [ "$CONSOLEFONT" != "" ]; then
+ status "Loading Console Font: $CONSOLEFONT" /usr/bin/setfont $CONSOLEFONT
+fi
+
# Load modules from the MODULES array defined in rc.conf
stat_busy "Loading Modules"
for mod in "${MODULES[@]}"; do