2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
2021-12-21 06:37:00 +05:30
|
|
|
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2015-12-05 04:22:19 +05:30
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
2021-12-21 06:37:00 +05:30
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2015-12-05 04:22:19 +05:30
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2007-07-11 00:39:41 +05:30
|
|
|
description="Sets a font for the consoles."
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2018-05-08 04:42:55 +05:30
|
|
|
need termencoding
|
2015-10-29 21:57:27 +05:30
|
|
|
after hotplug bootmisc modules
|
2016-07-31 23:31:17 +05:30
|
|
|
keyword -docker -lxc -openvz -prefix -systemd-nspawn -uml -vserver -xenu
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
start()
|
|
|
|
{
|
2007-11-24 03:53:20 +05:30
|
|
|
ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
|
|
|
|
consolefont=${consolefont:-${CONSOLEFONT}}
|
|
|
|
unicodemap=${unicodemap:-${UNICODEMAP}}
|
|
|
|
consoletranslation=${consoletranslation:-${CONSOLETRANSLATION}}
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
if [ -z "$consolefont" ]; then
|
2007-11-24 03:53:20 +05:30
|
|
|
ebegin "Using the default console font"
|
2007-04-05 16:48:42 +05:30
|
|
|
eend 0
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
if [ "$ttyn" = 0 ]; then
|
2007-12-14 19:42:38 +05:30
|
|
|
ebegin "Skipping font setup (rc_tty_number == 0)"
|
2007-09-25 21:25:47 +05:30
|
|
|
eend 0
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2008-03-27 19:19:49 +05:30
|
|
|
local x= param= sf_param= retval=0 ttydev=/dev/tty
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
# Get additional parameters
|
2009-04-27 13:21:18 +05:30
|
|
|
if [ -n "$consoletranslation" ]; then
|
|
|
|
param="$param -m $consoletranslation"
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
2007-11-24 03:53:20 +05:30
|
|
|
if [ -n "${unicodemap}" ]; then
|
2009-04-27 13:21:18 +05:30
|
|
|
param="$param -u $unicodemap"
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
|
|
|
|
# Set the console font
|
2009-04-27 13:21:18 +05:30
|
|
|
ebegin "Setting console font [$consolefont]"
|
2008-03-27 19:19:49 +05:30
|
|
|
[ -d /dev/vc ] && ttydev=/dev/vc/
|
2007-12-14 19:42:38 +05:30
|
|
|
x=1
|
2009-04-27 13:21:18 +05:30
|
|
|
while [ $x -le $ttyn ]; do
|
2009-08-19 21:19:35 +05:30
|
|
|
if ! setfont $consolefont $param -C $ttydev$x >/dev/null; then
|
|
|
|
retval=1
|
|
|
|
break
|
|
|
|
fi
|
2011-11-11 08:16:08 +05:30
|
|
|
: $(( x += 1 ))
|
2007-12-14 19:42:38 +05:30
|
|
|
done
|
2009-04-27 13:21:18 +05:30
|
|
|
eend $retval
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2013-02-12 08:43:27 +05:30
|
|
|
# Store the font so we can use it ASAP on boot
|
2012-01-29 00:02:05 +05:30
|
|
|
if [ $retval -eq 0 ] && checkpath -W "$RC_LIBEXECDIR"; then
|
2009-05-24 01:08:12 +05:30
|
|
|
mkdir -p "$RC_LIBEXECDIR"/console
|
2013-02-12 08:43:27 +05:30
|
|
|
setfont -O "$RC_LIBEXECDIR"/console/font
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
return $retval
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|