2008-02-28 01:59:32 +05:30
|
|
|
#!@SHELL@
|
2008-01-11 21:01:10 +05:30
|
|
|
# Copyright 2007-2008 Roy Marples <roy@marples.name>
|
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2007-04-26 18:38:34 +05:30
|
|
|
# Try and set a font and as early as we can
|
2007-07-01 14:15:23 +05:30
|
|
|
if [ -e /etc/runlevels/"${RC_DEFAULTLEVEL}"/consolefont \
|
2007-11-28 21:15:03 +05:30
|
|
|
-o -e /etc/runlevels/"${RC_BOOTLEVEL}"/consolefont ]; then
|
2007-07-01 14:15:23 +05:30
|
|
|
termencoding="(K"
|
|
|
|
[ -e "${RC_LIBDIR}"/console/unicode ] && termencoding="%G"
|
2007-08-07 12:55:24 +05:30
|
|
|
CONSOLE="${CONSOLE:-/dev/console}"
|
|
|
|
printf "\033%s" "${termencoding}" >"${CONSOLE}" 2>/dev/null
|
2007-11-28 21:15:03 +05:30
|
|
|
if [ -r "${RC_LIBDIR}"/console/font -a -x /bin/setfont ]; then
|
2007-07-01 14:15:23 +05:30
|
|
|
font="$(cat "${RC_LIBDIR}"/console/font)"
|
|
|
|
[ -c "${CONSOLE}" ] && cons="-C ${CONSOLE}"
|
2007-08-05 02:05:05 +05:30
|
|
|
setfont ${cons} "${RC_LIBDIR}"/console/"${font}" 2>/dev/null
|
2007-07-01 14:15:23 +05:30
|
|
|
fi
|
2007-04-26 18:38:34 +05:30
|
|
|
fi
|
2007-08-05 02:05:05 +05:30
|
|
|
|
|
|
|
# Ensure we exit 0 so the boot continues
|
|
|
|
exit 0
|