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
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# 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="Applies a keymap for the consoles."
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2018-05-08 04:42:55 +05:30
|
|
|
need termencoding
|
2018-11-07 04:04:14 +05:30
|
|
|
after devfs
|
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()
|
|
|
|
{
|
2009-04-27 13:21:18 +05:30
|
|
|
ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
|
|
|
|
: ${unicode:=$UNICODE}
|
2009-11-14 03:51:04 +05:30
|
|
|
: ${keymap:=$KEYMAP}
|
2009-04-27 13:21:18 +05:30
|
|
|
: ${extended_keymaps:=$EXTENDED_KEYMAPS}
|
2011-01-17 15:19:07 +05:30
|
|
|
: ${windowkeys:=$SET_WINDOWSKEYS}
|
2009-04-27 13:21:18 +05:30
|
|
|
: ${fix_euro:=$FIX_EURO}
|
|
|
|
: ${dumpkeys_charset:=${DUMPKEYS_CHARSET}}
|
|
|
|
|
|
|
|
if [ -z "$keymap" ]; then
|
2007-11-24 03:53:20 +05:30
|
|
|
eerror "You need to setup keymap in /etc/conf.d/keymaps first"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2008-03-27 19:19:49 +05:30
|
|
|
local ttydev=/dev/tty n=
|
|
|
|
[ -d /dev/vc ] && ttydev=/dev/vc/
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
# Force linux keycodes for PPC.
|
2007-11-28 21:15:03 +05:30
|
|
|
if [ -f /proc/sys/dev/mac_hid/keyboard_sends_linux_keycodes ]; then
|
2007-04-05 16:48:42 +05:30
|
|
|
echo 1 > /proc/sys/dev/mac_hid/keyboard_sends_linux_keycodes
|
|
|
|
fi
|
|
|
|
|
2009-11-14 03:51:04 +05:30
|
|
|
local wkeys= kmode="-a" msg="ASCII"
|
2009-04-27 13:21:18 +05:30
|
|
|
if yesno $unicode; then
|
2008-03-27 19:19:49 +05:30
|
|
|
kmode="-u"
|
|
|
|
msg="UTF-8"
|
|
|
|
fi
|
2009-04-27 13:21:18 +05:30
|
|
|
yesno $windowkeys && wkeys="windowkeys"
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
# Set terminal encoding to either ASCII or UNICODE.
|
|
|
|
# See utf-8(7) for more information.
|
2009-04-27 13:21:18 +05:30
|
|
|
ebegin "Setting keyboard mode [$msg]"
|
2007-09-28 18:24:48 +05:30
|
|
|
n=1
|
2009-04-27 13:21:18 +05:30
|
|
|
while [ $n -le $ttyn ]; do
|
|
|
|
kbd_mode $kmode -C $ttydev$n
|
2011-11-11 08:16:08 +05:30
|
|
|
: $(( n += 1 ))
|
2007-04-05 16:48:42 +05:30
|
|
|
done
|
|
|
|
eend 0
|
2009-04-26 16:49:22 +05:30
|
|
|
|
2009-11-14 03:51:04 +05:30
|
|
|
ebegin "Loading key mappings [$keymap]"
|
|
|
|
loadkeys -q $wkeys $keymap $extended_keymaps
|
|
|
|
eend $? "Error loading key mappings" || return $?
|
|
|
|
|
|
|
|
if yesno $fix_euro; then
|
|
|
|
ebegin "Fixing font for euro symbol"
|
|
|
|
# Fix some fonts displaying the Euro, #173528.
|
2013-02-16 03:39:49 +05:30
|
|
|
echo "altgr keycode 18 = U+20AC" | loadkeys -q -
|
2009-11-14 03:51:04 +05:30
|
|
|
eend $?
|
|
|
|
fi
|
2018-11-07 04:04:14 +05:30
|
|
|
return 0
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|