From c2648ca5f539c450b27d35c7c0a3d41c6e193d8f Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Wed, 27 Feb 2008 20:29:32 +0000 Subject: Makefile SH variable now tweaks the default shell used by our scripts. --- sh.Linux/init-early.sh.in | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 sh.Linux/init-early.sh.in (limited to 'sh.Linux/init-early.sh.in') diff --git a/sh.Linux/init-early.sh.in b/sh.Linux/init-early.sh.in new file mode 100644 index 00000000..d6cb007d --- /dev/null +++ b/sh.Linux/init-early.sh.in @@ -0,0 +1,20 @@ +#!@SHELL@ +# Copyright 2007-2008 Roy Marples +# All rights reserved. Released under the 2-clause BSD license. + +# Try and set a font and as early as we can +if [ -e /etc/runlevels/"${RC_DEFAULTLEVEL}"/consolefont \ + -o -e /etc/runlevels/"${RC_BOOTLEVEL}"/consolefont ]; then + termencoding="(K" + [ -e "${RC_LIBDIR}"/console/unicode ] && termencoding="%G" + CONSOLE="${CONSOLE:-/dev/console}" + printf "\033%s" "${termencoding}" >"${CONSOLE}" 2>/dev/null + if [ -r "${RC_LIBDIR}"/console/font -a -x /bin/setfont ]; then + font="$(cat "${RC_LIBDIR}"/console/font)" + [ -c "${CONSOLE}" ] && cons="-C ${CONSOLE}" + 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