* grub-core/term/at_keyboard.c (fetch_key): Make a printf on
unknown key into a dprintf.
This commit is contained in:
parent
dd94a3df9d
commit
9c9bfc6de9
2 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2011-05-09 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/term/at_keyboard.c (fetch_key): Make a printf on
|
||||||
|
unknown key into a dprintf.
|
||||||
|
|
||||||
2011-05-09 Vladimir Serbinenko <phcoder@gmail.com>
|
2011-05-09 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/kern/emu/hostdisk.c (linux_find_partition): Don't abort
|
* grub-core/kern/emu/hostdisk.c (linux_find_partition): Don't abort
|
||||||
|
|
|
@ -431,11 +431,11 @@ fetch_key (int *is_break)
|
||||||
if (!ret)
|
if (!ret)
|
||||||
{
|
{
|
||||||
if (was_ext)
|
if (was_ext)
|
||||||
grub_printf ("Unknown key 0xe0+0x%02x from set %d\n",
|
grub_dprintf ("atkeyb", "Unknown key 0xe0+0x%02x from set %d\n",
|
||||||
at_key, current_set);
|
at_key, current_set);
|
||||||
else
|
else
|
||||||
grub_printf ("Unknown key 0x%02x from set %d\n",
|
grub_dprintf ("atkeyb", "Unknown key 0x%02x from set %d\n",
|
||||||
at_key, current_set);
|
at_key, current_set);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Add table
Reference in a new issue