about summary refs log tree commit diff
path: root/core-services/02-console-setup.sh
diff options
context:
space:
mode:
authorchinarulezzz <s.alex08@mail.ru>2016-05-25 21:38:57 +0300
committerJuan RP <xtraeme@gmail.com>2016-05-25 20:38:57 +0200
commitc04b1488a1b88b2700e231203a210a7dc25a09fa (patch)
treee30e77fdad9e47eb72afdc714629c88b4b868b02 /core-services/02-console-setup.sh
parentab7f9c1f98d63c9e39008a8a2ab138093c82ce12 (diff)
downloadrunit-void-c04b1488a1b88b2700e231203a210a7dc25a09fa.tar.gz
runit-void-c04b1488a1b88b2700e231203a210a7dc25a09fa.tar.xz
runit-void-c04b1488a1b88b2700e231203a210a7dc25a09fa.zip
fix the broken font setting (#47) 20160525
Diffstat (limited to 'core-services/02-console-setup.sh')
-rw-r--r--core-services/02-console-setup.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/core-services/02-console-setup.sh b/core-services/02-console-setup.sh
deleted file mode 100644
index 5c8d468..0000000
--- a/core-services/02-console-setup.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-# vim: set ts=4 sw=4 et:
-
-[ -n "$VIRTUALIZATION" ] && return 0
-
-TTYS=${TTYS:-12}
-if [ -n "$FONT" ]; then
-    msg "Setting up TTYs font to '${FONT}'..."
-
-    _index=0
-    while [ ${_index} -le $TTYS ]; do
-        setfont ${FONT_MAP:+-m $FONT_MAP} ${FONT_UNIMAP:+-u $FONT_UNIMAP} \
-                $FONT -C "/dev/tty${_index}"
-        _index=$((_index + 1))
-    done
-fi
-
-if [ -n "$KEYMAP" ]; then
-    msg "Setting up keymap to '${KEYMAP}'..."
-    loadkeys -q -u ${KEYMAP}
-fi
-
-if [ -n "$HARDWARECLOCK" ]; then
-    msg "Setting up RTC to '${HARDWARECLOCK}'..."
-    TZ=$TIMEZONE hwclock --systz \
-        ${HARDWARECLOCK:+--$(echo $HARDWARECLOCK |tr A-Z a-z) --noadjfile} || emergency_shell
-fi