iPXE
keymap_cf.c File Reference

"cf" 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 cf_basic []
 "cf" basic remapping
static struct keymap_key cf_altgr []
 "cf" AltGr remapping
struct keymap cf_keymap __keymap
 "cf" keyboard map

Detailed Description

"cf" keyboard mapping

This file is automatically generated; do not edit

Definition in file keymap_cf.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( PUBLIC_DOMAIN )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED )

Variable Documentation

◆ cf_basic

struct keymap_key cf_basic[]
static
Initial value:
= {
{ 0x22, 0x60 },
{ 0x23, 0x2f },
{ 0x27, 0x60 },
{ 0x3c, 0x27 },
{ 0x3e, 0x2e },
{ 0x40, 0x22 },
{ 0x5b, 0x5e },
{ 0x5c, 0x3c },
{ 0x5e, 0x3f },
{ 0x60, 0x23 },
{ 0x7b, 0x5e },
{ 0x7c, 0x3e },
{ 0x7e, 0x7c },
{ 0, 0 }
}

"cf" basic remapping

Definition at line 15 of file keymap_cf.c.

15 {
16 { 0x22, 0x60 }, /* '"' => '`' */
17 { 0x23, 0x2f }, /* '#' => '/' */
18 { 0x27, 0x60 }, /* '\'' => '`' */
19 { 0x3c, 0x27 }, /* '<' => '\'' */
20 { 0x3e, 0x2e }, /* '>' => '.' */
21 { 0x40, 0x22 }, /* '@' => '"' */
22 { 0x5b, 0x5e }, /* '[' => '^' */
23 { 0x5c, 0x3c }, /* '\\' => '<' */
24 { 0x5e, 0x3f }, /* '^' => '?' */
25 { 0x60, 0x23 }, /* '`' => '#' */
26 { 0x7b, 0x5e }, /* '{' => '^' */
27 { 0x7c, 0x3e }, /* '|' => '>' */
28 { 0x7e, 0x7c }, /* '~' => '|' */
29 { 0, 0 }
30};

◆ cf_altgr

struct keymap_key cf_altgr[]
static
Initial value:
= {
{ 0x22, 0x7b },
{ 0x27, 0x7b },
{ 0x32, 0x40 },
{ 0x3a, 0x7e },
{ 0x3b, 0x7e },
{ 0x5c, 0x7d },
{ 0x60, 0x5c },
{ 0x7b, 0x5b },
{ 0x7c, 0x7d },
{ 0x7d, 0x5d },
{ 0x7e, 0x5c },
{ 0, 0 }
}

"cf" AltGr remapping

Definition at line 33 of file keymap_cf.c.

33 {
34 { 0x22, 0x7b }, /* '"' => '{' */
35 { 0x27, 0x7b }, /* '\'' => '{' */
36 { 0x32, 0x40 }, /* '2' => '@' */
37 { 0x3a, 0x7e }, /* ':' => '~' */
38 { 0x3b, 0x7e }, /* ';' => '~' */
39 { 0x5c, 0x7d }, /* '\\' => '}' */
40 { 0x60, 0x5c }, /* '`' => '\\' */
41 { 0x7b, 0x5b }, /* '{' => '[' */
42 { 0x7c, 0x7d }, /* '|' => '}' */
43 { 0x7d, 0x5d }, /* '}' => ']' */
44 { 0x7e, 0x5c }, /* '~' => '\\' */
45 { 0, 0 }
46};

◆ __keymap

struct keymap cf_keymap __keymap
Initial value:
= {
.name = "cf",
.basic = cf_basic,
.altgr = cf_altgr,
}
static struct keymap_key cf_altgr[]
"cf" AltGr remapping
Definition keymap_cf.c:33
static struct keymap_key cf_basic[]
"cf" basic remapping
Definition keymap_cf.c:15

"cf" keyboard map

Definition at line 49 of file keymap_cf.c.

49 {
50 .name = "cf",
51 .basic = cf_basic,
52 .altgr = cf_altgr,
53};