2007-04-26 18:38:34 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# 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 \
|
|
|
|
-o -e /etc/runlevels/"${RC_BOOTLEVEL}"/consolefont ] ; then
|
|
|
|
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-07-01 14:15:23 +05:30
|
|
|
if [ -r "${RC_LIBDIR}"/console/font -a -x /bin/setfont ] ; then
|
|
|
|
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
|