aboutsummaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2012-05-15 01:54:25 +0200
committerTom Gundersen <teg@jklm.no>2012-05-29 12:48:18 +0200
commit854aa04187d4f65607f9b4525ca6645a0db7c9f8 (patch)
tree9d3fb83e92dd7a69b295ceea2076561efd7ee6f3 /functions
parent6aae67af18fcb9af1ab47c7dd4bfd9c265f0203b (diff)
downloadinitscripts-854aa04187d4f65607f9b4525ca6645a0db7c9f8.tar.xz
vconsole: use the systemd tool
Signed-off-by: Tom Gundersen <teg@jklm.no>
Diffstat (limited to 'functions')
-rw-r--r--functions18
1 files changed, 0 insertions, 18 deletions
diff --git a/functions b/functions
index fcbe402..99bc43b 100644
--- a/functions
+++ b/functions
@@ -655,24 +655,6 @@ if (( RC_FUNCTIONS_HOOK_FUNCS_DEFINED != 1 )); then
declare -r RC_FUNCTIONS_HOOK_FUNCS_DEFINED=1
fi
-# Function for setting console font if required
-set_consolefont() {
- [[ $CONSOLEFONT ]] || return 0
- stat_busy "Loading Console Font: $CONSOLEFONT"
- #CONSOLEMAP in UTF-8 shouldn't be used
- [[ $CONSOLEMAP && ${LOCALE,,} =~ utf ]] && CONSOLEMAP=""
- local i
- for i in /dev/tty[0-9]*; do
- setfont ${CONSOLEMAP:+-m "${CONSOLEMAP}"} \
- "$CONSOLEFONT" -C ${i} &>/dev/null
- done
- if (( $? )); then
- stat_fail
- else
- stat_done
- fi
-}
-
if [[ $DAEMON_LOCALE = [yY][eE][sS] ]]; then
export LANG=${LOCALE:-C}
if [[ -r /etc/locale.conf ]]; then