]> git.proxmox.com Git - grub2.git/commitdiff
2009-11-08 Robert Millan <rmh.grub@aybabtu.com>
authorRobert Millan <rmh@aybabtu.com>
Sun, 8 Nov 2009 16:23:23 +0000 (16:23 +0000)
committerRobert Millan <rmh@aybabtu.com>
Sun, 8 Nov 2009 16:23:23 +0000 (16:23 +0000)
        * kern/i386/multiboot_mmap.c (grub_machine_mmap_init): Improve error
        message for coreboot users.

ChangeLog
kern/i386/multiboot_mmap.c

index 843be6dc57c8986182d16434ae445194e3d918e6..57cb49d95cfe6ca550fcb7416b1a0b4fb1d17d1c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-11-08  Robert Millan  <rmh.grub@aybabtu.com>
+
+       * kern/i386/multiboot_mmap.c (grub_machine_mmap_init): Improve error
+       message for coreboot users.
+
 2009-11-07  Robert Millan  <rmh.grub@aybabtu.com>
 
        Fix build with GNU gold.
index 8331bd5df21a7265b62eba9c5a19d628612972e6..6578a4834529009a62ede799d07d1e3ee4da8067 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  GRUB  --  GRand Unified Bootloader
- *  Copyright (C) 2002,2003,2004,2005,2006,2007,2008  Free Software Foundation, Inc.
+ *  Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009  Free Software Foundation, Inc.
  *
  *  GRUB is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -40,7 +40,7 @@ void
 grub_machine_mmap_init ()
 {
   if (! startup_multiboot_info)
-    grub_fatal ("Must be loaded using Multiboot specification (is this an old version of coreboot?)");
+    grub_fatal ("Unable to find Multiboot Information (is CONFIG_MULTIBOOT disabled in coreboot?)");
 
   /* Move MBI to a safe place.  */
   grub_memmove (&kern_multiboot_info, startup_multiboot_info, sizeof (struct grub_multiboot_info));