diff options
author | Michael Brown <mcb30@ipxe.org> | 2022-02-16 00:11:33 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2022-02-16 13:50:41 +0000 |
commit | 11e17991d0729fd17ab06d94ec67a8ca48032af4 (patch) | |
tree | bde32314934b638ed27ffd41f5b4b8d1ede9e401 /src/hci | |
parent | 252cff5e9a0b67a27e1837cb674491692b717fd0 (diff) | |
download | ipxe-11e17991d0729fd17ab06d94ec67a8ca48032af4.tar.gz |
[console] Ensure that US keyboard map appears at start of linker table
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/hci')
-rw-r--r-- | src/hci/keymap/keymap_us.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hci/keymap/keymap_us.c b/src/hci/keymap/keymap_us.c index 6432474e2..b8e604a48 100644 --- a/src/hci/keymap/keymap_us.c +++ b/src/hci/keymap/keymap_us.c @@ -21,7 +21,7 @@ static struct keymap_key us_altgr[] = { }; /** "us" keyboard map */ -struct keymap us_keymap __keymap = { +struct keymap us_keymap __keymap_default = { .name = "us", .basic = us_basic, .altgr = us_altgr, |