iPXE
keymap_us.c
Go to the documentation of this file.
1/** @file
2 *
3 * "us" 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/** "us" basic remapping */
15static struct keymap_key us_basic[] = {
16 { 0, 0 }
17};
18
19/** "us" AltGr remapping */
20static struct keymap_key us_altgr[] = {
21 { 0, 0 }
22};
23
24/** "us" keyboard map */
25struct keymap us_keymap __keymap_default = {
26 .name = "us",
27 .basic = us_basic,
28 .altgr = us_altgr,
29};
#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_default
Define a default keyboard mapping.
Definition keymap.h:44
static struct keymap_key us_altgr[]
"us" AltGr remapping
Definition keymap_us.c:20
static struct keymap_key us_basic[]
"us" basic remapping
Definition keymap_us.c:15
A remapped key.
Definition keymap.h:23
A keyboard mapping.
Definition keymap.h:31