iPXE
keymap_mt.c File Reference

"mt" keyboard mapping More...

#include <ipxe/keymap.h>

Go to the source code of this file.

Functions

 FILE_LICENCE (PUBLIC_DOMAIN)
 FILE_SECBOOT (PERMITTED)

Variables

static struct keymap_key mt_basic []
 "mt" basic remapping
static struct keymap_key mt_altgr []
 "mt" AltGr remapping
struct keymap mt_keymap __keymap
 "mt" keyboard map

Detailed Description

"mt" keyboard mapping

This file is automatically generated; do not edit

Definition in file keymap_mt.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( PUBLIC_DOMAIN )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED )

Variable Documentation

◆ mt_basic

struct keymap_key mt_basic[]
static
Initial value:
= {
{ 0x1c, 0x1e },
{ 0x22, 0x40 },
{ 0x40, 0x22 },
{ 0x5c, 0x23 },
{ 0x7c, 0x7e },
{ 0, 0 }
}

"mt" basic remapping

Definition at line 15 of file keymap_mt.c.

15 {
16 { 0x1c, 0x1e }, /* 0x1c => 0x1e */
17 { 0x22, 0x40 }, /* '"' => '@' */
18 { 0x40, 0x22 }, /* '@' => '"' */
19 { 0x5c, 0x23 }, /* '\\' => '#' */
20 { 0x7c, 0x7e }, /* '|' => '~' */
21 { 0, 0 }
22};

◆ mt_altgr

struct keymap_key mt_altgr[]
static
Initial value:
= {
{ 0x26, 0x7b },
{ 0x28, 0x5d },
{ 0x29, 0x7d },
{ 0x2a, 0x5b },
{ 0x30, 0x7d },
{ 0x37, 0x7b },
{ 0x38, 0x5b },
{ 0x39, 0x5d },
{ 0x5c, 0x60 },
{ 0x7e, 0x60 },
{ 0, 0 }
}

"mt" AltGr remapping

Definition at line 25 of file keymap_mt.c.

25 {
26 { 0x26, 0x7b }, /* '&' => '{' */
27 { 0x28, 0x5d }, /* '(' => ']' */
28 { 0x29, 0x7d }, /* ')' => '}' */
29 { 0x2a, 0x5b }, /* '*' => '[' */
30 { 0x30, 0x7d }, /* '0' => '}' */
31 { 0x37, 0x7b }, /* '7' => '{' */
32 { 0x38, 0x5b }, /* '8' => '[' */
33 { 0x39, 0x5d }, /* '9' => ']' */
34 { 0x5c, 0x60 }, /* '\\' => '`' */
35 { 0x7e, 0x60 }, /* '~' => '`' */
36 { 0, 0 }
37};

◆ __keymap

struct keymap mt_keymap __keymap
Initial value:
= {
.name = "mt",
.basic = mt_basic,
.altgr = mt_altgr,
}
static struct keymap_key mt_altgr[]
"mt" AltGr remapping
Definition keymap_mt.c:25
static struct keymap_key mt_basic[]
"mt" basic remapping
Definition keymap_mt.c:15

"mt" keyboard map

Definition at line 40 of file keymap_mt.c.

40 {
41 .name = "mt",
42 .basic = mt_basic,
43 .altgr = mt_altgr,
44};