Boot properly when we cannot set an early font, #187628.

This commit is contained in:
Roy Marples
2007-08-04 20:35:05 +00:00
parent 3e5526fd76
commit 1e4357ad01
3 changed files with 6 additions and 2 deletions

View File

@@ -10,6 +10,9 @@ if [ -e /etc/runlevels/"${RC_DEFAULTLEVEL}"/consolefont \
font="$(cat "${RC_LIBDIR}"/console/font)"
CONSOLE="${CONSOLE:-/dev/console}"
[ -c "${CONSOLE}" ] && cons="-C ${CONSOLE}"
setfont ${cons} "${RC_LIBDIR}"/console/"${font}"
setfont ${cons} "${RC_LIBDIR}"/console/"${font}" 2>/dev/null
fi
fi
# Ensure we exit 0 so the boot continues
exit 0