Re: Can't change keyboard layout
Reply #3 –
Looking a bit more your actual error comes after the service attempts to change the terminal encoding with the command kbd_mode
# Set terminal encoding to either ASCII or UNICODE.
# See utf-8(7) for more information.
ebegin "Setting keyboard mode [$msg]"
n=1
while [ $n -le $ttyn ]; do
kbd_mode $kmode -C $ttydev$n
: $(( n += 1 ))
done
eend 0
There's a bit of code above which seem to decide on Ascii or Unicode based on what $windowkeys is set to.
Try setting windowskeys="YES" in /etc/conf.d/keymaps and see what happens ?