From: "Vladimir 'φ-coder/phcoder' Serbinenko" <phcoder@gmail.com>
To: The development of GNU GRUB <grub-devel@gnu.org>
Subject: Re: [PATCH] Make CTRL and ALT keys work as expected on EFI systems (version 5).
Date: Sun, 25 Oct 2015 16:41:07 +0100 [thread overview]
Message-ID: <562CF813.9030901@gmail.com> (raw)
In-Reply-To: <1393366348-22020-1-git-send-email-pjones@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 2753 bytes --]
On 25.02.2014 23:12, Peter Jones wrote:
> This is version 4.
>
> Changes from version 1:
> - handles SHIFT as a modifier
> - handles F11 and F12 keys
> - uses the handle provided by the system table to find our _EX protocol.
>
> Changes from version 2:
> - eliminate duplicate keycode translation.
>
> Changes from version 3:
> - Do not add the shift modifier for any ascii character between space
> (0x20) and DEL (0x7f); the combination of the modifier and many of the
> keys causes it not to be recognized at all. Specifically, if we
> include the modifier on any querty punctuation character, i.e.
> anything the string "~!@#$%^&*()_+{}|:\"<>?" represents in C, it stops
> being recognized whatsoever.
>
> Changes from version 4:
> - Always initialize term->data from locate protocol (i.e. make it
> unconditional.)
>
> Signed-off-by: Peter Jones <pjones@redhat.com>
> ---
> grub-core/term/efi/console.c | 118 +++++++++++++++++++++++++++++++++++--------
> include/grub/efi/api.h | 65 +++++++++++++++++++++++-
> 2 files changed, 161 insertions(+), 22 deletions(-)
>
> diff --git a/grub-core/term/efi/console.c b/grub-core/term/efi/console.c
> index a37eb84..677eab5 100644
> --- a/grub-core/term/efi/console.c
> +++ b/grub-core/term/efi/console.c
> @@ -104,26 +104,12 @@ const unsigned efi_codes[] =
> GRUB_TERM_KEY_DC, GRUB_TERM_KEY_PPAGE, GRUB_TERM_KEY_NPAGE, GRUB_TERM_KEY_F1,
> GRUB_TERM_KEY_F2, GRUB_TERM_KEY_F3, GRUB_TERM_KEY_F4, GRUB_TERM_KEY_F5,
> GRUB_TERM_KEY_F6, GRUB_TERM_KEY_F7, GRUB_TERM_KEY_F8, GRUB_TERM_KEY_F9,
> - GRUB_TERM_KEY_F10, 0, 0, '\e'
> + GRUB_TERM_KEY_F10, GRUB_TERM_KEY_F10, GRUB_TERM_KEY_F11, '\e'
> };
>
Yikes
> -
> static int
> -grub_console_getkey (struct grub_term_input *term __attribute__ ((unused)))
> +grub_efi_translate_key (grub_efi_input_key_t key)
> {
> - grub_efi_simple_input_interface_t *i;
> - grub_efi_input_key_t key;
> - grub_efi_status_t status;
> -
> - if (grub_efi_is_finished)
> - return 0;
> -
> - i = grub_efi_system_table->con_in;
> - status = efi_call_2 (i->read_key_stroke, i, &key);
> -
> - if (status != GRUB_EFI_SUCCESS)
> - return GRUB_TERM_NO_KEY;
> -
> if (key.scan_code == 0)
> {
> /* Some firmware implementations use VT100-style codes against the spec.
> @@ -139,9 +125,98 @@ grub_console_getkey (struct grub_term_input *term __attribute__ ((unused)))
> else if (key.scan_code < ARRAY_SIZE (efi_codes))
> return efi_codes[key.scan_code];
>
> + if (key.unicode_char >= 0x20 && key.unicode_char <= 0x7f)
> + return key.unicode_char;
> +
This ignores enter, tab and so on.
I fixed 2 above issues and committed.
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 213 bytes --]
prev parent reply other threads:[~2015-10-25 15:41 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-25 22:12 [PATCH] Make CTRL and ALT keys work as expected on EFI systems (version 5) Peter Jones
2014-02-26 2:58 ` Mroczek, Joseph T
2014-02-26 18:51 ` Vladimir 'φ-coder/phcoder' Serbinenko
2015-10-10 18:48 ` Andrei Borzenkov
2015-10-12 14:19 ` Peter Jones
2015-10-12 14:47 ` Peter Jones
2015-10-13 3:50 ` Andrei Borzenkov
2015-10-25 15:41 ` Vladimir 'φ-coder/phcoder' Serbinenko [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=562CF813.9030901@gmail.com \
--to=phcoder@gmail.com \
--cc=grub-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).