aboutsummaryrefslogtreecommitdiffstats
path: root/src/hci/keymap/keymap_lt.c
blob: f8e60a5c5a40319ae7359dd90d1f070c86c2e2ae (plain)
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
32
33
/** @file
 *
 * "lt" keyboard mapping
 *
 * This file is automatically generated; do not edit
 *
 */

FILE_LICENCE ( PUBLIC_DOMAIN );

#include <ipxe/keymap.h>

/** "lt" basic remapping */
static struct keymap_key lt_basic[] = {
	{ 0, 0 }
};

/** "lt" AltGr remapping */
static struct keymap_key lt_altgr[] = {
	{ 0x22, 0x5e },	/* '"' => '^' */
	{ 0x27, 0x5e },	/* '\'' => '^' */
	{ 0x4b, 0x26 },	/* 'K' => '&' */
	{ 0x51, 0x40 },	/* 'Q' => '@' */
	{ 0x71, 0x40 },	/* 'q' => '@' */
	{ 0, 0 }
};

/** "lt" keyboard map */
struct keymap lt_keymap __keymap = {
	.name = "lt",
	.basic = lt_basic,
	.altgr = lt_altgr,
};