[Bug 226553] kbdcontrol doesn't map function keys
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Thu Oct 3 16:38:52 UTC 2019
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226553
--- Comment #14 from Sergey <kpect at protonmail.com> ---
This patch https://reviews.freebsd.org/D14936 actually does work, but I have
several concerns.
In order to be able to map fkeys to for example Ctrl/Alt/Shift + ArrowKeys
line
if (fkey >=0 && fkey < 65) {
have to chenged to
if (fkey >=0 && fkey < 97) {
And second problem is that after patching, some keys on the console misbehave,
for example Del key starts to work as Backspace. Or in 'less' pager arrow keys
and PgUp/PgDn doesn't work anymore. Rebuilding without the patch fixes the keys
behaviour.
Best regards,
Sergey.
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-bugs
mailing list