iPXE
keymap_de.c File Reference

"de" 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 de_basic []
 "de" basic remapping
static struct keymap_key de_altgr []
 "de" AltGr remapping
struct keymap de_keymap __keymap
 "de" keyboard map

Detailed Description

"de" keyboard mapping

This file is automatically generated; do not edit

Definition in file keymap_de.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( PUBLIC_DOMAIN )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED )

Variable Documentation

◆ de_basic

struct keymap_key de_basic[]
static

"de" basic remapping

Definition at line 15 of file keymap_de.c.

15 {
16 { 0x19, 0x1a }, /* Ctrl-Y => Ctrl-Z */
17 { 0x1a, 0x19 }, /* Ctrl-Z => Ctrl-Y */
18 { 0x1c, 0x23 }, /* 0x1c => '#' */
19 { 0x1d, 0x1e }, /* 0x1d => 0x1e */
20 { 0x1e, 0x36 }, /* 0x1e => '6' */
21 { 0x26, 0x2f }, /* '&' => '/' */
22 { 0x28, 0x29 }, /* '(' => ')' */
23 { 0x29, 0x3d }, /* ')' => '=' */
24 { 0x2a, 0x28 }, /* '*' => '(' */
25 { 0x2b, 0x60 }, /* '+' => '`' */
26 { 0x2f, 0x2d }, /* '/' => '-' */
27 { 0x3c, 0x3b }, /* '<' => ';' */
28 { 0x3e, 0x3a }, /* '>' => ':' */
29 { 0x3f, 0x5f }, /* '?' => '_' */
30 { 0x40, 0x22 }, /* '@' => '"' */
31 { 0x59, 0x5a }, /* 'Y' => 'Z' */
32 { 0x5a, 0x59 }, /* 'Z' => 'Y' */
33 { 0x5c, 0x23 }, /* '\\' => '#' */
34 { 0x5d, 0x2b }, /* ']' => '+' */
35 { 0x5e, 0x26 }, /* '^' => '&' */
36 { 0x5f, 0x3f }, /* '_' => '?' */
37 { 0x60, 0x5e }, /* '`' => '^' */
38 { 0x79, 0x7a }, /* 'y' => 'z' */
39 { 0x7a, 0x79 }, /* 'z' => 'y' */
40 { 0x7c, 0x27 }, /* '|' => '\'' */
41 { 0x7d, 0x2a }, /* '}' => '*' */
42 { 0xdc, 0x3c }, /* Pseudo-'\\' => '<' */
43 { 0xfc, 0x3e }, /* Pseudo-'|' => '>' */
44 { 0, 0 }
45};

◆ de_altgr

struct keymap_key de_altgr[]
static
Initial value:
= {
{ 0x26, 0x7b },
{ 0x28, 0x5d },
{ 0x29, 0x7d },
{ 0x2a, 0x5b },
{ 0x2d, 0x5c },
{ 0x30, 0x7d },
{ 0x37, 0x7b },
{ 0x38, 0x5b },
{ 0x39, 0x5d },
{ 0x3a, 0x7e },
{ 0x3b, 0x7e },
{ 0x51, 0x40 },
{ 0x5d, 0x7e },
{ 0x5f, 0x5c },
{ 0x71, 0x40 },
{ 0x7c, 0x7e },
{ 0x7d, 0x7e },
{ 0xdc, 0x7c },
{ 0, 0 }
}

"de" AltGr remapping

Definition at line 48 of file keymap_de.c.

48 {
49 { 0x26, 0x7b }, /* '&' => '{' */
50 { 0x28, 0x5d }, /* '(' => ']' */
51 { 0x29, 0x7d }, /* ')' => '}' */
52 { 0x2a, 0x5b }, /* '*' => '[' */
53 { 0x2d, 0x5c }, /* '-' => '\\' */
54 { 0x30, 0x7d }, /* '0' => '}' */
55 { 0x37, 0x7b }, /* '7' => '{' */
56 { 0x38, 0x5b }, /* '8' => '[' */
57 { 0x39, 0x5d }, /* '9' => ']' */
58 { 0x3a, 0x7e }, /* ':' => '~' */
59 { 0x3b, 0x7e }, /* ';' => '~' */
60 { 0x51, 0x40 }, /* 'Q' => '@' */
61 { 0x5d, 0x7e }, /* ']' => '~' */
62 { 0x5f, 0x5c }, /* '_' => '\\' */
63 { 0x71, 0x40 }, /* 'q' => '@' */
64 { 0x7c, 0x7e }, /* '|' => '~' */
65 { 0x7d, 0x7e }, /* '}' => '~' */
66 { 0xdc, 0x7c }, /* Pseudo-'\\' => '|' */
67 { 0, 0 }
68};

◆ __keymap

struct keymap de_keymap __keymap
Initial value:
= {
.name = "de",
.basic = de_basic,
.altgr = de_altgr,
}
static struct keymap_key de_basic[]
"de" basic remapping
Definition keymap_de.c:15
static struct keymap_key de_altgr[]
"de" AltGr remapping
Definition keymap_de.c:48

"de" keyboard map

Definition at line 71 of file keymap_de.c.

71 {
72 .name = "de",
73 .basic = de_basic,
74 .altgr = de_altgr,
75};