2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2008-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.
|
2008-03-27 19:19:49 +05:30
|
|
|
|
|
|
|
description="Configures terminal encoding."
|
|
|
|
|
|
|
|
ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
|
2009-04-27 13:21:18 +05:30
|
|
|
: ${unicode:=${UNICODE}}
|
2008-03-27 19:19:49 +05:30
|
|
|
|
|
|
|
depend()
|
|
|
|
{
|
2016-07-31 23:31:17 +05:30
|
|
|
keyword -docker -lxc -openvz -prefix -systemd-nspawn -uml -vserver -xenu
|
2018-11-07 04:04:14 +05:30
|
|
|
after devfs
|
2008-03-27 19:19:49 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
|
|
|
local ttydev=/dev/tty n=
|
|
|
|
[ -d /dev/vc ] && ttydev=/dev/vc/
|
|
|
|
|
|
|
|
# Set terminal encoding to either ASCII or UNICODE.
|
|
|
|
# See utf-8(7) for more information.
|
|
|
|
local termencoding="%@" termmsg="ASCII"
|
2023-03-07 12:18:26 +05:30
|
|
|
if yesno ${unicode:-yes}; then
|
2008-03-27 19:19:49 +05:30
|
|
|
termencoding="%G"
|
|
|
|
termmsg="UTF-8"
|
|
|
|
fi
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
ebegin "Setting terminal encoding [$termmsg]"
|
2008-03-27 19:19:49 +05:30
|
|
|
n=1
|
2009-04-27 13:21:18 +05:30
|
|
|
while [ ${n} -le "$ttyn" ]; do
|
|
|
|
printf "\033%s" "$termencoding" >$ttydev$n
|
2011-11-11 08:16:08 +05:30
|
|
|
: $(( n += 1 ))
|
2008-03-27 19:19:49 +05:30
|
|
|
done
|
2011-02-15 05:21:15 +05:30
|
|
|
|
|
|
|
# Save the encoding for use immediately at boot
|
2012-01-29 00:02:05 +05:30
|
|
|
if checkpath -W "$RC_LIBEXECDIR"; then
|
2011-02-15 05:21:15 +05:30
|
|
|
mkdir -p "$RC_LIBEXECDIR"/console
|
2023-03-07 12:18:26 +05:30
|
|
|
if yesno ${unicode:-yes}; then
|
2011-02-15 05:21:15 +05:30
|
|
|
echo "" > "$RC_LIBEXECDIR"/console/unicode
|
|
|
|
else
|
|
|
|
rm -f "$RC_LIBEXECDIR"/console/unicode
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2008-03-27 19:19:49 +05:30
|
|
|
eend 0
|
|
|
|
}
|