diff options
author | Roy Marples <roy@marples.name> | 2007-08-07 07:25:24 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-08-07 07:25:24 +0000 |
commit | 8d0f3f2b16de19532483f71cb4496d5065bd6c4c (patch) | |
tree | e45d2ecc4cfde77cc16b20da22221ee10abcfcb4 /sh.Linux | |
parent | 1e4357ad01ad7d0f97aa760ebb0ad4d281bc7eda (diff) |
Try and hide the terminal escape codes when they fail.
Diffstat (limited to 'sh.Linux')
-rwxr-xr-x | sh.Linux/init-early.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sh.Linux/init-early.sh b/sh.Linux/init-early.sh index 1bdf1fd4..42bd3dc9 100755 --- a/sh.Linux/init-early.sh +++ b/sh.Linux/init-early.sh @@ -5,10 +5,10 @@ if [ -e /etc/runlevels/"${RC_DEFAULTLEVEL}"/consolefont \ -o -e /etc/runlevels/"${RC_BOOTLEVEL}"/consolefont ] ; then termencoding="(K" [ -e "${RC_LIBDIR}"/console/unicode ] && termencoding="%G" - printf "\033%s" "${termencoding}" + 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)" - CONSOLE="${CONSOLE:-/dev/console}" [ -c "${CONSOLE}" ] && cons="-C ${CONSOLE}" setfont ${cons} "${RC_LIBDIR}"/console/"${font}" 2>/dev/null fi |