openrc/init.d/keymaps.in

68 lines
1.8 KiB
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
# Copyright 2007-2008 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.
description="Applies a keymap for the consoles."
2007-11-24 04:15:22 +05:30
ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
2007-11-24 03:53:20 +05:30
unicode=${unicode:-${UNICODE}}
keymap=${keymap:-${KEYMAP}}
extended_keymaps=${extended_keymaps:-${EXTENDED_KEYMAPS}}
windowskeys=${windowskeys:-${SET_WINDOWSKEYS}}
fix_euro=${fix_euro:-${FIX_EURO}}
dumpkeys_charset=${dumpkeys_charset:-${DUMPKEYS_CHARSET}}
depend()
{
2008-03-27 19:19:49 +05:30
need localmount termencoding
2008-03-03 22:49:56 +05:30
keyword noopenvz noprefix nouml novserver noxenu
}
start()
{
2007-11-28 21:15:03 +05:30
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
2008-03-27 19:33:37 +05:30
ebegin "Loading key mappings [${keymap}]"
2008-03-27 19:19:49 +05:30
local loadkeys_uni= wkeys= kmode="-a" msg="ASCII"
if yesno ${unicode}; then
loadkeys_uni="--unicode"
kmode="-u"
msg="UTF-8"
fi
yesno ${windowskeys} && wkeys="windowkeys"
loadkeys -q ${loadkeys_uni} ${wkeys} ${keymap} ${extended_keymaps}
eend $? "Error loading key mappings" || return $?
if yesno ${fix_euro}; then
2008-03-27 19:19:49 +05:30
ebegin "Fixing font for euro symbol"
# Fix some fonts displaying the Euro, #173528.
echo "altgr keycode 18 = U+20AC" | loadkeys -q
2008-03-27 19:19:49 +05:30
eend $?
fi
# Set terminal encoding to either ASCII or UNICODE.
# See utf-8(7) for more information.
2008-03-27 19:33:37 +05:30
ebegin "Setting keyboard mode [${msg}]"
2007-11-24 03:53:20 +05:30
if yesno ${unicode}; then
dumpkeys ${dumpkeys_charset:+-c} \
${dumpkeys_charset} | loadkeys --unicode
fi
n=1
2007-11-24 03:53:20 +05:30
while [ ${n} -le "${ttyn}" ]; do
2008-01-30 22:06:18 +05:30
kbd_mode "${kmode}" -C "${ttydev}${n}"
n=$((${n} + 1))
done
eend 0
}