2008-03-03 02:44:01 +05:30
|
|
|
#!@PREFIX@/sbin/runscript
|
2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2007-2008 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="Applies a keymap 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 bootmisc
|
2012-07-03 08:34:22 +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()
|
|
|
|
{
|
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.
|
|
|
|
echo "altgr keycode 18 = U+20AC" | loadkeys -q
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
|
2009-04-26 16:49:22 +05:30
|
|
|
# Save the keymapping for use immediately at boot
|
2012-01-29 00:02:05 +05:30
|
|
|
if checkpath -W "$RC_LIBEXECDIR"; then
|
2009-05-24 01:08:12 +05:30
|
|
|
mkdir -p "$RC_LIBEXECDIR"/console
|
|
|
|
dumpkeys >"$RC_LIBEXECDIR"/console/keymap
|
2009-04-26 16:49:22 +05:30
|
|
|
fi
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|