PrintScreen and SysRequest==Alt+PrintScreen should give the same keycode since they are the same physical key. This was fixed about a year ago with the following code in xf86PostKbdEvent(): if (scanCode == KEY_SysReqest) scanCode = KEY_Print; else if (scanCode == KEY_Break) scanCode = KEY_Pause; And the shippe XKB files expect this to be the case. But now the keys are reporting different keycodes again, so the above code is not getting run or not working as expected.
Created attachment 778 [details] [review] Fix for differing keycodes for Print and SysReq The patch was taken from the old keyboard driver, were it's been in use for at least one release. It's a low risk patch that fixes a keyboard driver regression.
Adding as blocker since it's a regression and has a simple fix.
Patch checked in. Closing.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.