2013-06-07 18:03:56 +00:00
|
|
|
From f6301725f6a55b194640ed2ebf7c182b2cb079ed Mon Sep 17 00:00:00 2001
|
2013-05-02 20:54:52 +00:00
|
|
|
From: Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>
|
|
|
|
Date: Mon, 25 Mar 2013 10:32:06 +0100
|
2013-06-12 19:24:37 +00:00
|
|
|
Subject: [PATCH 233/482] * grub-core/normal/menu.c: Wait if there were
|
2013-05-02 20:54:52 +00:00
|
|
|
errors shown at "boot" command.
|
|
|
|
|
|
|
|
---
|
|
|
|
ChangeLog | 5 +++++
|
|
|
|
grub-core/normal/menu.c | 5 +++++
|
|
|
|
2 files changed, 10 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/ChangeLog b/ChangeLog
|
|
|
|
index 8425aff..5ca62d0 100644
|
|
|
|
--- a/ChangeLog
|
|
|
|
+++ b/ChangeLog
|
|
|
|
@@ -1,5 +1,10 @@
|
|
|
|
2013-03-25 Vladimir Serbinenko <phcoder@gmail.com>
|
|
|
|
|
|
|
|
+ * grub-core/normal/menu.c: Wait if there were errors shown at "boot"
|
|
|
|
+ command.
|
|
|
|
+
|
|
|
|
+2013-03-25 Vladimir Serbinenko <phcoder@gmail.com>
|
|
|
|
+
|
|
|
|
Replace the region at 0 from coreboot tables to available in BSD
|
|
|
|
memory map.
|
|
|
|
|
|
|
|
diff --git a/grub-core/normal/menu.c b/grub-core/normal/menu.c
|
|
|
|
index 7e0a158..787b287 100644
|
|
|
|
--- a/grub-core/normal/menu.c
|
|
|
|
+++ b/grub-core/normal/menu.c
|
|
|
|
@@ -250,10 +250,15 @@ grub_menu_execute_entry(grub_menu_entry_t entry, int auto_boot)
|
|
|
|
if (errs_before != grub_err_printed_errors)
|
|
|
|
grub_wait_after_message ();
|
|
|
|
|
|
|
|
+ errs_before = grub_err_printed_errors;
|
|
|
|
+
|
|
|
|
if (grub_errno == GRUB_ERR_NONE && grub_loader_is_loaded ())
|
|
|
|
/* Implicit execution of boot, only if something is loaded. */
|
|
|
|
grub_command_execute ("boot", 0, 0);
|
|
|
|
|
|
|
|
+ if (errs_before != grub_err_printed_errors)
|
|
|
|
+ grub_wait_after_message ();
|
|
|
|
+
|
|
|
|
if (entry->submenu)
|
|
|
|
{
|
|
|
|
if (menu && menu->size)
|
|
|
|
--
|
2013-06-07 18:03:56 +00:00
|
|
|
1.8.2.1
|
2013-05-02 20:54:52 +00:00
|
|
|
|