2008-03-03 02:44:01 +05:30
|
|
|
#!@PREFIX@/sbin/runscript
|
2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
2011-06-30 05:16:31 +05:30
|
|
|
# Released under the 2-clause BSD license.
|
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()
|
|
|
|
{
|
2008-03-27 19:19:49 +05:30
|
|
|
need localmount termencoding
|
2009-04-27 13:21:18 +05:30
|
|
|
after hotplug bootmisc
|
2010-08-10 18:51:08 +05:30
|
|
|
keyword -openvz -prefix -uml -vserver -xenu -lxc
|
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
|
2009-04-27 13:21:18 +05:30
|
|
|
x=$(($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
|
|
|
|
|
|
|
# Store the last font so we can use it ASAP on boot
|
2009-05-24 01:08:12 +05:30
|
|
|
if [ $retval -eq 0 -a -w "$RC_LIBEXECDIR" ]; then
|
|
|
|
mkdir -p "$RC_LIBEXECDIR"/console
|
2009-04-27 13:21:18 +05:30
|
|
|
for font in /usr/share/consolefonts/"$consolefont".*; do
|
2008-01-11 17:43:46 +05:30
|
|
|
:
|
2008-03-23 17:54:15 +05:30
|
|
|
done
|
2009-05-24 01:08:12 +05:30
|
|
|
cp "$font" "$RC_LIBEXECDIR"/console
|
|
|
|
echo "${font##*/}" >"$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
|
|
|
}
|