iPXE
keymap_ru.c
Go to the documentation of this file.
1/** @file
2 *
3 * "ru" keyboard mapping
4 *
5 * This file is automatically generated; do not edit
6 *
7 */
8
9FILE_LICENCE ( PUBLIC_DOMAIN );
10FILE_SECBOOT ( PERMITTED );
11
12#include <ipxe/keymap.h>
13
14/** "ru" basic remapping */
15static struct keymap_key ru_basic[] = {
16 { 0x0d, 0x0a }, /* Ctrl-M => Ctrl-J */
17 { 0xdc, 0x3c }, /* Pseudo-'\\' => '<' */
18 { 0xfc, 0x3e }, /* Pseudo-'|' => '>' */
19 { 0, 0 }
20};
21
22/** "ru" AltGr remapping */
23static struct keymap_key ru_altgr[] = {
24 { 0, 0 }
25};
26
27/** "ru" keyboard map */
28struct keymap ru_keymap __keymap = {
29 .name = "ru",
30 .basic = ru_basic,
31 .altgr = ru_altgr,
32};
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
Keyboard mappings.
#define __keymap
Define a keyboard mapping.
Definition keymap.h:47
static struct keymap_key ru_altgr[]
"ru" AltGr remapping
Definition keymap_ru.c:23
static struct keymap_key ru_basic[]
"ru" basic remapping
Definition keymap_ru.c:15
A remapped key.
Definition keymap.h:23
A keyboard mapping.
Definition keymap.h:31