diff options
author | Roy Marples <roy@marples.name> | 2007-04-26 13:08:34 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-04-26 13:08:34 +0000 |
commit | 54c6ff1b0a8e50ee0246ca4f82a7713a182e328d (patch) | |
tree | 5ee3c5b75e1888bdeaa67e760c25168092395f28 /sh.Linux/init-early.sh | |
parent | ea2158fe9417015978fb91304ced04810afa9afd (diff) |
File to configure our font as early as possible in init
Diffstat (limited to 'sh.Linux/init-early.sh')
-rwxr-xr-x | sh.Linux/init-early.sh | 12 |
1 files changed, 12 insertions, 0 deletions
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 |