aboutsummaryrefslogtreecommitdiff
path: root/sh.Linux/init-early.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sh.Linux/init-early.sh')
-rwxr-xr-xsh.Linux/init-early.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/sh.Linux/init-early.sh b/sh.Linux/init-early.sh
index 3d2e2248..1bdf1fd4 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