From 1e4357ad01ad7d0f97aa760ebb0ad4d281bc7eda Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Sat, 4 Aug 2007 20:35:05 +0000 Subject: Boot properly when we cannot set an early font, #187628. --- sh.Linux/init-early.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'sh.Linux') diff --git a/sh.Linux/init-early.sh b/sh.Linux/init-early.sh index 3d2e224..1bdf1fd 100755 --- a/sh.Linux/init-early.sh +++ b/sh.Linux/init-early.sh @@ -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 -- cgit v1.2.3