+2010-04-09 EFI Coder <eficoder@hotmail.com>
+
+ * normal/menu_text.c (print_message): Clean up the message and show
+ the Fn information when on EFI
+ * term/efi/console.c (grub_console_checkkey): Add F4 support.
+
2010-04-09 Vladimir Serbinenko <phcoder@gmail.com>
* normal/autofs.c (read_fs_list): New parameter 'prefix'.
if (edit)
{
grub_putcode ('\n', term);
+#ifdef GRUB_MACHINE_EFI
+ grub_print_message_indented (_("Minimum Emacs-like screen editing is \
+supported. TAB lists completions. Press F1 to boot, F2=Ctrl-a, F3=Ctrl-e, \
+F4 for a command-line or ESC to discard edits and return to the GRUB menu."),
+ STANDARD_MARGIN, STANDARD_MARGIN, term);
+#else
grub_print_message_indented (_("Minimum Emacs-like screen editing is \
supported. TAB lists completions. Press Ctrl-x to boot, Ctrl-c for a \
-command-line or ESC to return menu."), STANDARD_MARGIN, STANDARD_MARGIN,
- term);
+command-line or ESC to discard edits and return to the GRUB menu."),
+ STANDARD_MARGIN, STANDARD_MARGIN, term);
+#endif
}
else
{