All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marco Gerards <mgerards@xs4all.nl>
To: The development of GRUB 2 <grub-devel@gnu.org>
Subject: Re: [PATCH] Fix grub-emu curses KEY_* mapping
Date: Fri, 09 Nov 2007 16:17:23 +0100	[thread overview]
Message-ID: <87ir4bla7w.fsf@xs4all.nl> (raw)
In-Reply-To: <472B9CBF.9030702@t-online.de> (Christian Franke's message of "Fri, 02 Nov 2007 22:55:11 +0100")

Christian Franke <Christian.Franke@t-online.de> writes:

> Curses function keys do not work in grub-emu, this patch fixes this in
> grub_ncurses_getkey().

Ha!  I once noticed this and forgot to document this bug :(

> Another approach would be to remove the scancode translation in
> grub_console_getkey(), and check for GRUB_CONSOLE_KEY_* in
> grub_cmdline_get() instead. The GRUB_CONSOLE_KEY_* definitions are
> already platform specific.

Yes, this is really weird!  All archs define these macros and expect
for i386-pc none of them are used.  I actually wonder if any of those
work :-)

> Christian
>
> 2007-11-02  Christian Franke  <franke@computer.org>
>
> 	* util/console.c (grub_ncurses_getkey): Change curses KEY_* mapping,
> 	now return control chars instead of GRUB_CONSOLE_KEY_* constants.
> 	This fixes the problem that function keys did not work in grub-emu.
>
>
> --- grub2.orig/util/console.c	2007-07-22 01:32:31.000000000 +0200
> +++ grub2/util/console.c	2007-10-13 16:13:46.000000000 +0200
> @@ -161,53 +161,59 @@ grub_ncurses_getkey (void)
>        c = getch ();
>      }
>  
> +  /* XXX: return GRUB_CONSOLE_KEY_* does not work here,
> +     grub_cmdline_get() does not check for these constants.
> +     At least on i386-pc, GRUB_CONSOLE_KEY_* are in fact keyboard
> +     scancodes which are converted into control chars by
> +     grub_console_getkey(). */
> +

I do not think this comment is needed.  You explained it in the
email.  I do not like comments that explain why we aren't doing some
things, it is usually better to explain why we do something if it is a
hack or not obvious.  In this case I prefer no comment.

>    switch (c)
>      {
>      case KEY_LEFT:
> -      c = GRUB_CONSOLE_KEY_LEFT;
> +      c = 2; /*GRUB_CONSOLE_KEY_LEFT*/
>        break;

Please just remove the comment.  As this appears to be wrong anyways
:-)

Thanks,
Marco




  reply	other threads:[~2007-11-09 15:16 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-02 21:55 [PATCH] Fix grub-emu curses KEY_* mapping Christian Franke
2007-11-09 15:17 ` Marco Gerards [this message]
2007-11-10 13:09   ` Christian Franke
2007-11-10 15:25     ` Marco Gerards
2007-11-18  7:20       ` Robert Millan

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=87ir4bla7w.fsf@xs4all.nl \
    --to=mgerards@xs4all.nl \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.