iPXE
keymap_al.c File Reference

"al" 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 al_basic []
 "al" basic remapping
static struct keymap_key al_altgr []
 "al" AltGr remapping
struct keymap al_keymap __keymap
 "al" keyboard map

Detailed Description

"al" keyboard mapping

This file is automatically generated; do not edit

Definition in file keymap_al.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( PUBLIC_DOMAIN )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED )

Variable Documentation

◆ al_basic

struct keymap_key al_basic[]
static
Initial value:
= {
{ 0x19, 0x1a },
{ 0x1a, 0x19 },
{ 0x1c, 0x1d },
{ 0x22, 0x7b },
{ 0x27, 0x5b },
{ 0x3c, 0x3b },
{ 0x3e, 0x3a },
{ 0x40, 0x22 },
{ 0x59, 0x5a },
{ 0x5a, 0x59 },
{ 0x5c, 0x5d },
{ 0x5d, 0x40 },
{ 0x60, 0x5c },
{ 0x79, 0x7a },
{ 0x7a, 0x79 },
{ 0x7c, 0x7d },
{ 0x7d, 0x27 },
{ 0x7e, 0x7c },
{ 0xdc, 0x3c },
{ 0xfc, 0x3e },
{ 0, 0 }
}

"al" basic remapping

Definition at line 15 of file keymap_al.c.

15 {
16 { 0x19, 0x1a }, /* Ctrl-Y => Ctrl-Z */
17 { 0x1a, 0x19 }, /* Ctrl-Z => Ctrl-Y */
18 { 0x1c, 0x1d }, /* 0x1c => 0x1d */
19 { 0x22, 0x7b }, /* '"' => '{' */
20 { 0x27, 0x5b }, /* '\'' => '[' */
21 { 0x3c, 0x3b }, /* '<' => ';' */
22 { 0x3e, 0x3a }, /* '>' => ':' */
23 { 0x40, 0x22 }, /* '@' => '"' */
24 { 0x59, 0x5a }, /* 'Y' => 'Z' */
25 { 0x5a, 0x59 }, /* 'Z' => 'Y' */
26 { 0x5c, 0x5d }, /* '\\' => ']' */
27 { 0x5d, 0x40 }, /* ']' => '@' */
28 { 0x60, 0x5c }, /* '`' => '\\' */
29 { 0x79, 0x7a }, /* 'y' => 'z' */
30 { 0x7a, 0x79 }, /* 'z' => 'y' */
31 { 0x7c, 0x7d }, /* '|' => '}' */
32 { 0x7d, 0x27 }, /* '}' => '\'' */
33 { 0x7e, 0x7c }, /* '~' => '|' */
34 { 0xdc, 0x3c }, /* Pseudo-'\\' => '<' */
35 { 0xfc, 0x3e }, /* Pseudo-'|' => '>' */
36 { 0, 0 }
37};

◆ al_altgr

struct keymap_key al_altgr[]
static
Initial value:
= {
{ 0x21, 0x7e },
{ 0x26, 0x60 },
{ 0x29, 0x7e },
{ 0x30, 0x7e },
{ 0x31, 0x7e },
{ 0x34, 0x7e },
{ 0x37, 0x60 },
{ 0x3a, 0x7e },
{ 0x56, 0x60 },
{ 0x7c, 0x7e },
{ 0, 0 }
}

"al" AltGr remapping

Definition at line 40 of file keymap_al.c.

40 {
41 { 0x21, 0x7e }, /* '!' => '~' */
42 { 0x26, 0x60 }, /* '&' => '`' */
43 { 0x29, 0x7e }, /* ')' => '~' */
44 { 0x30, 0x7e }, /* '0' => '~' */
45 { 0x31, 0x7e }, /* '1' => '~' */
46 { 0x34, 0x7e }, /* '4' => '~' */
47 { 0x37, 0x60 }, /* '7' => '`' */
48 { 0x3a, 0x7e }, /* ':' => '~' */
49 { 0x56, 0x60 }, /* 'V' => '`' */
50 { 0x7c, 0x7e }, /* '|' => '~' */
51 { 0, 0 }
52};

◆ __keymap

struct keymap al_keymap __keymap
Initial value:
= {
.name = "al",
.basic = al_basic,
.altgr = al_altgr,
}
static struct keymap_key al_basic[]
"al" basic remapping
Definition keymap_al.c:15
static struct keymap_key al_altgr[]
"al" AltGr remapping
Definition keymap_al.c:40

"al" keyboard map

Definition at line 55 of file keymap_al.c.

55 {
56 .name = "al",
57 .basic = al_basic,
58 .altgr = al_altgr,
59};