From 54c6ff1b0a8e50ee0246ca4f82a7713a182e328d Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Thu, 26 Apr 2007 13:08:34 +0000 Subject: File to configure our font as early as possible in init --- sh.Linux/init-early.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 sh.Linux/init-early.sh diff --git a/sh.Linux/init-early.sh b/sh.Linux/init-early.sh new file mode 100755 index 00000000..680d63de --- /dev/null +++ b/sh.Linux/init-early.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +# Try and set a font and as early as we can +termencoding="(K" +[ -e "${RC_LIBDIR}"/console/unicode ] && termencoding="%G" +printf "\033%s" "${termencoding}" +if [ -r "${RC_LIBDIR}"/console/font -a -x /bin/setfont ] ; then + font="$(cat "${RC_LIBDIR}"/console/font)" + CONSOLE="${CONSOLE:-/dev/console}" + [ -c "${CONSOLE}" ] && cons="-C ${CONSOLE}" + setfont ${cons} "${RC_LIBDIR}"/console/"${font}" +fi -- cgit v1.2.3