iPXE
keymap_pt.c File Reference

"pt" 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 pt_basic []
 "pt" basic remapping
static struct keymap_key pt_altgr []
 "pt" AltGr remapping
struct keymap pt_keymap __keymap
 "pt" keyboard map

Detailed Description

"pt" keyboard mapping

This file is automatically generated; do not edit

Definition in file keymap_pt.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( PUBLIC_DOMAIN )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED )

Variable Documentation

◆ pt_basic

struct keymap_key pt_basic[]
static
Initial value:
= {
{ 0x1c, 0x7e },
{ 0x1e, 0x36 },
{ 0x26, 0x2f },
{ 0x28, 0x29 },
{ 0x29, 0x3d },
{ 0x2a, 0x28 },
{ 0x2d, 0x27 },
{ 0x2f, 0x2d },
{ 0x3c, 0x3b },
{ 0x3e, 0x3a },
{ 0x3f, 0x5f },
{ 0x40, 0x22 },
{ 0x5b, 0x2b },
{ 0x5c, 0x7e },
{ 0x5e, 0x26 },
{ 0x5f, 0x3f },
{ 0x60, 0x5c },
{ 0x7b, 0x2a },
{ 0x7c, 0x5e },
{ 0x7d, 0x60 },
{ 0x7e, 0x7c },
{ 0xdc, 0x3c },
{ 0xfc, 0x3e },
{ 0, 0 }
}

"pt" basic remapping

Definition at line 15 of file keymap_pt.c.

15 {
16 { 0x1c, 0x7e }, /* 0x1c => '~' */
17 { 0x1e, 0x36 }, /* 0x1e => '6' */
18 { 0x26, 0x2f }, /* '&' => '/' */
19 { 0x28, 0x29 }, /* '(' => ')' */
20 { 0x29, 0x3d }, /* ')' => '=' */
21 { 0x2a, 0x28 }, /* '*' => '(' */
22 { 0x2d, 0x27 }, /* '-' => '\'' */
23 { 0x2f, 0x2d }, /* '/' => '-' */
24 { 0x3c, 0x3b }, /* '<' => ';' */
25 { 0x3e, 0x3a }, /* '>' => ':' */
26 { 0x3f, 0x5f }, /* '?' => '_' */
27 { 0x40, 0x22 }, /* '@' => '"' */
28 { 0x5b, 0x2b }, /* '[' => '+' */
29 { 0x5c, 0x7e }, /* '\\' => '~' */
30 { 0x5e, 0x26 }, /* '^' => '&' */
31 { 0x5f, 0x3f }, /* '_' => '?' */
32 { 0x60, 0x5c }, /* '`' => '\\' */
33 { 0x7b, 0x2a }, /* '{' => '*' */
34 { 0x7c, 0x5e }, /* '|' => '^' */
35 { 0x7d, 0x60 }, /* '}' => '`' */
36 { 0x7e, 0x7c }, /* '~' => '|' */
37 { 0xdc, 0x3c }, /* Pseudo-'\\' => '<' */
38 { 0xfc, 0x3e }, /* Pseudo-'|' => '>' */
39 { 0, 0 }
40};

◆ pt_altgr

struct keymap_key pt_altgr[]
static
Initial value:
= {
{ 0x26, 0x7b },
{ 0x28, 0x5d },
{ 0x29, 0x7d },
{ 0x2a, 0x5b },
{ 0x30, 0x7d },
{ 0x32, 0x40 },
{ 0x37, 0x7b },
{ 0x38, 0x5b },
{ 0x39, 0x5d },
{ 0x51, 0x40 },
{ 0x71, 0x40 },
{ 0, 0 }
}

"pt" AltGr remapping

Definition at line 43 of file keymap_pt.c.

43 {
44 { 0x26, 0x7b }, /* '&' => '{' */
45 { 0x28, 0x5d }, /* '(' => ']' */
46 { 0x29, 0x7d }, /* ')' => '}' */
47 { 0x2a, 0x5b }, /* '*' => '[' */
48 { 0x30, 0x7d }, /* '0' => '}' */
49 { 0x32, 0x40 }, /* '2' => '@' */
50 { 0x37, 0x7b }, /* '7' => '{' */
51 { 0x38, 0x5b }, /* '8' => '[' */
52 { 0x39, 0x5d }, /* '9' => ']' */
53 { 0x51, 0x40 }, /* 'Q' => '@' */
54 { 0x71, 0x40 }, /* 'q' => '@' */
55 { 0, 0 }
56};

◆ __keymap

struct keymap pt_keymap __keymap
Initial value:
= {
.name = "pt",
.basic = pt_basic,
.altgr = pt_altgr,
}
static struct keymap_key pt_basic[]
"pt" basic remapping
Definition keymap_pt.c:15
static struct keymap_key pt_altgr[]
"pt" AltGr remapping
Definition keymap_pt.c:43

"pt" keyboard map

Definition at line 59 of file keymap_pt.c.

59 {
60 .name = "pt",
61 .basic = pt_basic,
62 .altgr = pt_altgr,
63};