openrc/init.d/keymaps.in

71 lines
1.7 KiB
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
2009-05-01 19:41:40 +05:30
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
description="Applies a keymap for the consoles."
depend()
{
2008-03-27 19:19:49 +05:30
need localmount termencoding
2009-04-27 13:21:18 +05:30
after bootmisc
keyword -openvz -prefix -uml -vserver -xenu -lxc
}
start()
{
2009-04-27 13:21:18 +05:30
ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
: ${unicode:=$UNICODE}
: ${keymap:=$KEYMAP}
2009-04-27 13:21:18 +05:30
: ${extended_keymaps:=$EXTENDED_KEYMAPS}
: ${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/
# 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
echo 1 > /proc/sys/dev/mac_hid/keyboard_sends_linux_keycodes
fi
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"
# 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]"
n=1
2009-04-27 13:21:18 +05:30
while [ $n -le $ttyn ]; do
kbd_mode $kmode -C $ttydev$n
: $(( n += 1 ))
done
eend 0
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
# Save the keymapping for use immediately at boot
if checkpath -W "$RC_LIBEXECDIR"; then
mkdir -p "$RC_LIBEXECDIR"/console
dumpkeys >"$RC_LIBEXECDIR"/console/keymap
fi
}