OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.3 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../linux/96-usb-hid-apple-kbd-mapping.patch.disabled
  5. # Copyright (C) 2008 - 2010 The OpenSDE Project
  6. # Copyright (C) 2004 - 2008 The T2 SDE Project
  7. #
  8. # More information can be found in the files COPYING and README.
  9. #
  10. # This patch file is dual-licensed. It is available under the license the
  11. # patched project is licensed under, as long as it is an OpenSource license
  12. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  13. # of the GNU General Public License as published by the Free Software
  14. # Foundation; either version 2 of the License, or (at your option) any later
  15. # version.
  16. # --- SDE-COPYRIGHT-NOTE-END ---
  17. The Apple USB keyboards carry symbols differing from the on-wire values sent.
  18. So we swap the events here simillar as in the 95-adb-mapping patch.
  19. Likewise, default to the normal F* keys for usability on the Linux desktop.
  20. - Rene Rebe <rene@exactcode.de>
  21. --- linux-2.6.20/drivers/hid/hid-input.c.vanilla 2007-02-05 11:24:46.737682437 +0100
  22. +++ linux-2.6.20/drivers/hid/hid-input.c 2007-02-05 11:24:52.770026201 +0100
  23. @@ -256,8 +256,20 @@
  24. set_bit(EV_REP, input->evbit);
  25. if ((usage->hid & HID_USAGE) < 256) {
  26. - if (!hid_keyboard[usage->hid & HID_USAGE]) goto ignore;
  27. - map_key_clear(hid_keyboard[usage->hid & HID_USAGE]);
  28. + unsigned char code = hid_keyboard[usage->hid & HID_USAGE];
  29. + if (!code) goto ignore;
  30. +
  31. + /* Apple? */
  32. + if (input->id.vendor == 0x5ac) {
  33. + /* alt->altgr, lmeta->alt, and no dups
  34. + due Linux meta bit parsing */
  35. + switch (code) {
  36. + case 56: code = 100; break;
  37. + case 125: code = 56; break;
  38. + case 100: code = 127; break;
  39. + }
  40. + }
  41. + map_key_clear(code);
  42. } else
  43. map_key(KEY_UNKNOWN);
  44. --- linux-2.6.25/drivers/hid/hid-input.c.vanilla 2008-04-18 12:36:56.000000000 +0200
  45. +++ linux-2.6.25/drivers/hid/hid-input.c 2008-04-18 12:37:03.000000000 +0200
  46. @@ -34,7 +34,7 @@
  47. #include <linux/hid.h>
  48. #include <linux/hid-debug.h>
  49. -static int hid_apple_fnmode = 1;
  50. +static int hid_apple_fnmode = 2;
  51. module_param_named(pb_fnmode, hid_apple_fnmode, int, 0644);
  52. MODULE_PARM_DESC(pb_fnmode,
  53. "Mode of fn key on Apple keyboards (0 = disabled, 1 = fkeyslast, 2 = fkeysfirst)");