summaryrefslogtreecommitdiffstats
path: root/src/hci/keymap/keymap_ua.c
blob: bbd390079df1a3a2a5452965ae40f9919d711162 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/** @file
 *
 * "ua" keyboard mapping
 *
 * This file is automatically generated; do not edit
 *
 */

FILE_LICENCE ( PUBLIC_DOMAIN );
FILE_SECBOOT ( PERMITTED );

#include <ipxe/keymap.h>

/** "ua" basic remapping */
static struct keymap_key ua_basic[] = {
	{ 0xdc, 0x3c },	/* Pseudo-'\\' => '<' */
	{ 0xfc, 0x3e },	/* Pseudo-'|' => '>' */
	{ 0, 0 }
};

/** "ua" AltGr remapping */
static struct keymap_key ua_altgr[] = {
	{ 0, 0 }
};

/** "ua" keyboard map */
struct keymap ua_keymap __keymap = {
	.name = "ua",
	.basic = ua_basic,
	.altgr = ua_altgr,
};