mirror of
https://github.com/OpenRC/openrc.git
synced 2024-11-23 18:03:51 +08:00
fix setfont detection in early startup on Linux
Most of the time, setfont is an external command (part of the kbd package), but it can also be a builtin if busybox is being used. This corrects the test in early startup to work for both cases. I would like to thank Steve L. for pointing this out.
This commit is contained in:
parent
a09a60c4cf
commit
248434329b
@ -30,7 +30,8 @@ fi
|
||||
if service_present "$RC_DEFAULTLEVEL" consolefont ||
|
||||
service_present "$RC_BOOTLEVEL" consolefont; then
|
||||
printf "\033%s" "$termencoding" >"$CONSOLE" 2>/dev/null
|
||||
if [ -r "$RC_LIBEXECDIR"/console/font -a -x /usr/bin/setfont ]; then
|
||||
if [ -r "$RC_LIBEXECDIR"/console/font ] && \
|
||||
type setfont > /dev/null 2>&1; then
|
||||
[ -c "$CONSOLE" ] && cons="-C $CONSOLE"
|
||||
setfont $cons "$RC_LIBEXECDIR"/console/font 2>/dev/null
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user