summaryrefslogtreecommitdiff
path: root/sh.Linux
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-08-07 07:25:24 +0000
committerRoy Marples <roy@marples.name>2007-08-07 07:25:24 +0000
commit8d0f3f2b16de19532483f71cb4496d5065bd6c4c (patch)
treee45d2ecc4cfde77cc16b20da22221ee10abcfcb4 /sh.Linux
parent1e4357ad01ad7d0f97aa760ebb0ad4d281bc7eda (diff)
downloadopenrc-8d0f3f2b16de19532483f71cb4496d5065bd6c4c.tar.gz
openrc-8d0f3f2b16de19532483f71cb4496d5065bd6c4c.tar.bz2
openrc-8d0f3f2b16de19532483f71cb4496d5065bd6c4c.tar.xz
Try and hide the terminal escape codes when they fail.
Diffstat (limited to 'sh.Linux')
-rwxr-xr-xsh.Linux/init-early.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/sh.Linux/init-early.sh b/sh.Linux/init-early.sh
index 1bdf1fd..42bd3dc 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