Bug 757365
Summary: | Microphone-mute-key does not work in X11 | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | tuxor <acc-bugz-redhat> |
Component: | xorg-x11-drv-keyboard | Assignee: | X/OpenGL Maintenance List <xgl-maint> |
Status: | CLOSED CANTFIX | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | medium | Docs Contact: | |
Priority: | unspecified | ||
Version: | 16 | CC: | peter.hutterer, xgl-maint |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | x86_64 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2011-11-29 04:46:09 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
tuxor
2011-11-26 17:37:21 UTC
from linux/input.h: #define KEY_MICMUTE 248 /* Mute / unmute the microphone */ and #define KEY_UNKNOWN 240 so my guess was that it was simply unknown in f15 but it is known now. the problem you're running into though is the 255 keycode limit in X. Anything that's (kernel keycode + 8 >= 255) cannot be routed by X. sorry. See the upstream bug here: https://bugs.freedesktop.org/show_bug.cgi?id=11227 |