mirror of
https://github.com/ipxe/ipxe
synced 2025-12-10 21:41:09 +03:00
Separate the concept of a keyboard mapping from a list of remapped keys, to allow for the possibility of supporting multiple keyboard mappings at runtime. Signed-off-by: Michael Brown <mcb30@ipxe.org>
25 lines
426 B
C
25 lines
426 B
C
/** @file
|
|
*
|
|
* "gr" keyboard mapping
|
|
*
|
|
* This file is automatically generated; do not edit
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( PUBLIC_DOMAIN );
|
|
|
|
#include <ipxe/keymap.h>
|
|
|
|
/** "gr" basic remapping */
|
|
static struct keymap_key gr_basic[] = {
|
|
{ 0xdc, 0x3c }, /* Pseudo-'\\' => '<' */
|
|
{ 0xfc, 0x3e }, /* Pseudo-'|' => '>' */
|
|
{ 0, 0 }
|
|
};
|
|
|
|
/** "gr" keyboard map */
|
|
struct keymap gr_keymap __keymap = {
|
|
.name = "gr",
|
|
.basic = gr_basic,
|
|
};
|