Several keyboard layouts define ASCII characters as accessible only via the AltGr modifier. Add support for this modifier to ensure that all ASCII characters are accessible. Experiments suggest that the BIOS console is likely to fail to generate ASCII characters when the AltGr key is pressed. Work around this limitation by accepting LShift+RShift (which will definitely produce an ASCII character) as a synonym for AltGr. Signed-off-by: Michael Brown <mcb30@ipxe.org>
43 lines
939 B
C
43 lines
939 B
C
/** @file
|
|
*
|
|
* "il" keyboard mapping
|
|
*
|
|
* This file is automatically generated; do not edit
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( PUBLIC_DOMAIN );
|
|
|
|
#include <ipxe/keymap.h>
|
|
|
|
/** "il" basic remapping */
|
|
static struct keymap_key il_basic[] = {
|
|
{ 0x1d, 0x1b }, /* 0x1d => 0x1b */
|
|
{ 0x27, 0x2c }, /* '\'' => ',' */
|
|
{ 0x28, 0x29 }, /* '(' => ')' */
|
|
{ 0x29, 0x28 }, /* ')' => '(' */
|
|
{ 0x2f, 0x2e }, /* '/' => '.' */
|
|
{ 0x3c, 0x3e }, /* '<' => '>' */
|
|
{ 0x3e, 0x3c }, /* '>' => '<' */
|
|
{ 0x5b, 0x5d }, /* '[' => ']' */
|
|
{ 0x5d, 0x5b }, /* ']' => '[' */
|
|
{ 0x60, 0x3b }, /* '`' => ';' */
|
|
{ 0x7b, 0x7d }, /* '{' => '}' */
|
|
{ 0x7d, 0x7b }, /* '}' => '{' */
|
|
{ 0xdc, 0x3c }, /* Pseudo-'\\' => '<' */
|
|
{ 0xfc, 0x3e }, /* Pseudo-'|' => '>' */
|
|
{ 0, 0 }
|
|
};
|
|
|
|
/** "il" AltGr remapping */
|
|
static struct keymap_key il_altgr[] = {
|
|
{ 0, 0 }
|
|
};
|
|
|
|
/** "il" keyboard map */
|
|
struct keymap il_keymap __keymap = {
|
|
.name = "il",
|
|
.basic = il_basic,
|
|
.altgr = il_altgr,
|
|
};
|