summaryrefslogtreecommitdiff
path: root/sh.Linux
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-07-01 08:45:23 +0000
committerRoy Marples <roy@marples.name>2007-07-01 08:45:23 +0000
commit53097aedc57aafb174e32cbeb8f6527d150e2a66 (patch)
treefa02437b36d50b3eba53f8e23ce5e421f5468868 /sh.Linux
parentafaa27fd652fbc3555faa92f3e1e16957bafd751 (diff)
downloadopenrc-53097aedc57aafb174e32cbeb8f6527d150e2a66.tar.gz
openrc-53097aedc57aafb174e32cbeb8f6527d150e2a66.tar.bz2
openrc-53097aedc57aafb174e32cbeb8f6527d150e2a66.tar.xz
Don't set an early font if consolefont isn't in a runlevel, #183773.
Diffstat (limited to 'sh.Linux')
-rwxr-xr-xsh.Linux/init-early.sh19
1 files changed, 11 insertions, 8 deletions
diff --git a/sh.Linux/init-early.sh b/sh.Linux/init-early.sh
index 680d63d..3d2e224 100755
--- a/sh.Linux/init-early.sh
+++ b/sh.Linux/init-early.sh
@@ -1,12 +1,15 @@
#!/bin/sh
# Try and set a font and as early as we can
-termencoding="(K"
-[ -e "${RC_LIBDIR}"/console/unicode ] && termencoding="%G"
-printf "\033%s" "${termencoding}"
-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}"
+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}"
+ 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}"
+ fi
fi