Don't set an early font if consolefont isn't in a runlevel, #183773.
This commit is contained in:
parent
afaa27fd65
commit
53097aedc5
@ -1,6 +1,10 @@
|
|||||||
# ChangeLog for Gentoo System Intialization ("rc") scripts
|
# ChangeLog for Gentoo System Intialization ("rc") scripts
|
||||||
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPLv2
|
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPLv2
|
||||||
|
|
||||||
|
30 Jun 2007; Roy Marples <uberlord@gentoo.org>:
|
||||||
|
|
||||||
|
Don't set an early font if consolefont isn't in a runlevel, #183773.
|
||||||
|
|
||||||
27 Jun 2007; Roy Marples <uberlord@gentoo.org>:
|
27 Jun 2007; Roy Marples <uberlord@gentoo.org>:
|
||||||
|
|
||||||
Add --no-ldconfig option to env-update to match portage.
|
Add --no-ldconfig option to env-update to match portage.
|
||||||
|
@ -1,12 +1,15 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# Try and set a font and as early as we can
|
# Try and set a font and as early as we can
|
||||||
termencoding="(K"
|
if [ -e /etc/runlevels/"${RC_DEFAULTLEVEL}"/consolefont \
|
||||||
[ -e "${RC_LIBDIR}"/console/unicode ] && termencoding="%G"
|
-o -e /etc/runlevels/"${RC_BOOTLEVEL}"/consolefont ] ; then
|
||||||
printf "\033%s" "${termencoding}"
|
termencoding="(K"
|
||||||
if [ -r "${RC_LIBDIR}"/console/font -a -x /bin/setfont ] ; then
|
[ -e "${RC_LIBDIR}"/console/unicode ] && termencoding="%G"
|
||||||
font="$(cat "${RC_LIBDIR}"/console/font)"
|
printf "\033%s" "${termencoding}"
|
||||||
CONSOLE="${CONSOLE:-/dev/console}"
|
if [ -r "${RC_LIBDIR}"/console/font -a -x /bin/setfont ] ; then
|
||||||
[ -c "${CONSOLE}" ] && cons="-C ${CONSOLE}"
|
font="$(cat "${RC_LIBDIR}"/console/font)"
|
||||||
setfont ${cons} "${RC_LIBDIR}"/console/"${font}"
|
CONSOLE="${CONSOLE:-/dev/console}"
|
||||||
|
[ -c "${CONSOLE}" ] && cons="-C ${CONSOLE}"
|
||||||
|
setfont ${cons} "${RC_LIBDIR}"/console/"${font}"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user