From 431e8cc84fe960ec91c3463493ce94df65ef41f2 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Thu, 26 Apr 2007 08:02:21 +0000 Subject: Fix early setting of font --- init.d.Linux/keymaps | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'init.d.Linux/keymaps') diff --git a/init.d.Linux/keymaps b/init.d.Linux/keymaps index eab90552..0de5833e 100755 --- a/init.d.Linux/keymaps +++ b/init.d.Linux/keymaps @@ -58,10 +58,10 @@ start() { [ -n "${DUMPKEYS_CHARSET}" ] && dumpkey_opts="-c ${DUMPKEYS_CHARSET}" dumpkeys ${dumpkey_opts} | loadkeys --unicode - termencoding='\033%%G' + termencoding="%G" termmsg="UTF-8" else - termencoding='\033(K' + termencoding="(K" termmsg="ASCII" fi local n=1 ttydev= @@ -70,7 +70,7 @@ start() { || ttydev=/dev/tty ebegin "Setting terminal encoding to" ${termmsg} while [ ${n} -le "${RC_TTY_NUMBER}" ] ; do - printf "${termencoding}" >"${ttydev}${n}" + printf "\033%s" "${termencoding}" >"${ttydev}${n}" n=$((${n} + 1)) done eend 0 -- cgit v1.2.3