Files
ipxe/src/hci/keymap/keymap_us.c

30 lines
481 B
C
Raw Normal View History

/** @file
*
* "us" keyboard mapping
*
* This file is automatically generated; do not edit
*
*/
FILE_LICENCE ( PUBLIC_DOMAIN );
FILE_SECBOOT ( PERMITTED );
#include <ipxe/keymap.h>
/** "us" basic remapping */
static struct keymap_key us_basic[] = {
{ 0, 0 }
};
/** "us" AltGr remapping */
static struct keymap_key us_altgr[] = {
{ 0, 0 }
};
/** "us" keyboard map */
struct keymap us_keymap __keymap_default = {
.name = "us",
.basic = us_basic,
.altgr = us_altgr,
};