Oliver Gerlich
Oliver Gerlich
> It looks like that would simplify parts of the PRs. Ah yes, good point. Here is a PR for changing the type of `scancode`: https://github.com/xbmc/xbmc/pull/26041 . I can later...
Maybe @yosefk can give a hint about the output format that funtrace creates? Is it a file in "Trace Event Format" that can be opened with Perfetto, Chromium (about:tracing), Firefox...
Good points... I'll have another look at XKB and see if I can get these extended keycodes mapped there. Probably not this week though :-)
FYI, I'm still looking into the missing key mappings in XKB. That's probably caused by some missing `_EVDEVK()` entries in https://gitlab.freedesktop.org/xorg/proto/xorgproto/-/blob/master/include/X11/XF86keysym.h . So probably the next steps are: - finding...
Rebased to master now. FYI, the PR for the changes that will (eventually) fix XKB is at https://gitlab.freedesktop.org/xorg/proto/xorgproto/-/merge_requests/93 .
Huh, I wasn't aware that suggestions from Jenkins could be ignored :-) And yes, I would prefer to have the fix in XKB; but making user-visible improvements with simple code...
@HiassofT Thanks for testing! _Summary:_ for most of the keys you mention (except for KEY_EXIT) I simply don't know yet what they should be mapped to in Kodi; and even...
I noticed that some keys from the new mapping table are actually supported by XKB, so now I added these to `xkbMap` instead. The remaining keys in `evdevKeycodeMap` are all...
Just as a side note: there is also a completely alternative solution, by treating such key input similar to current LIRC input: https://github.com/xbmc/xbmc/pull/26038 . This has the advantage of supporting...
@bam80 Yes, I agree. My understanding is that these steps would be necessary: - the missing keys need to be added to XKB (by merging https://gitlab.freedesktop.org/xorg/proto/xorgproto/-/merge_requests/93), - and then https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config...