mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-10-16 09:10:09 +08:00
Update to FreeBSD head 2018-12-20
Git mirror commit 19a6ceb89dbacf74697d493e48c388767126d418. It includes an update of wpa_supplicant to version 2.7. It includes an update of the OpenSSL baseline to version 1.1.1a. Update #3472.
This commit is contained in:
@@ -252,12 +252,15 @@ evdev_scancode2key(int *state, int scancode)
|
||||
*/
|
||||
*state = 0;
|
||||
if ((scancode & 0x7f) == 0x1D)
|
||||
*state = 0x1D;
|
||||
*state = scancode;
|
||||
return (NONE);
|
||||
/* NOT REACHED */
|
||||
case 0x1D: /* pause / break */
|
||||
case 0x9D:
|
||||
if ((*state ^ scancode) & 0x80)
|
||||
return (NONE);
|
||||
*state = 0;
|
||||
if (scancode != 0x45)
|
||||
if ((scancode & 0x7f) != 0x45)
|
||||
return (NONE);
|
||||
keycode = KEY_PAUSE;
|
||||
break;
|
||||
|
Reference in New Issue
Block a user