summaryrefslogtreecommitdiff
path: root/sh.Linux
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-04-26 13:08:34 +0000
committerRoy Marples <roy@marples.name>2007-04-26 13:08:34 +0000
commit54c6ff1b0a8e50ee0246ca4f82a7713a182e328d (patch)
tree5ee3c5b75e1888bdeaa67e760c25168092395f28 /sh.Linux
parentea2158fe9417015978fb91304ced04810afa9afd (diff)
downloadopenrc-54c6ff1b0a8e50ee0246ca4f82a7713a182e328d.tar.gz
openrc-54c6ff1b0a8e50ee0246ca4f82a7713a182e328d.tar.bz2
openrc-54c6ff1b0a8e50ee0246ca4f82a7713a182e328d.tar.xz
File to configure our font as early as possible in init
Diffstat (limited to 'sh.Linux')
-rwxr-xr-xsh.Linux/init-early.sh12
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 0000000..680d63d
--- /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