]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2007-10-05 Robert Millan <rmh@aybabtu.com>
authorrobertmh <robertmh@localhost>
Fri, 5 Oct 2007 11:02:40 +0000 (11:02 +0000)
committerrobertmh <robertmh@localhost>
Fri, 5 Oct 2007 11:02:40 +0000 (11:02 +0000)
* loader/i386/pc/linux.c (grub_rescue_cmd_linux): Specify available
and required memory sizes in "too small lower memory" error.

ChangeLog
loader/i386/pc/linux.c

index aee004ce7d400e10b6eae1ebcba6dffea6c666f9..d394673ecb79789125eddc631980959fb6bc4e3d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-05  Robert Millan  <rmh@aybabtu.com>
+
+       * loader/i386/pc/linux.c (grub_rescue_cmd_linux): Specify available
+       and required memory sizes in "too small lower memory" error.
+
 2007-10-03  Robert Millan  <rmh@aybabtu.com>
 
        * include/grub/i386/io.h: New file.
index 8f2ba2a1ad7dc8104d6c4a593990a5d0835a2988..818f762e3b20ab8dfb9b0b1b6f904b1bf65bff00 100644 (file)
@@ -169,7 +169,10 @@ grub_rescue_cmd_linux (int argc, char *argv[])
   if (grub_linux_real_addr + GRUB_LINUX_SETUP_MOVE_SIZE
       > (char *) grub_lower_mem)
     {
-      grub_error (GRUB_ERR_OUT_OF_RANGE, "too small lower memory");
+      grub_error (GRUB_ERR_OUT_OF_RANGE,
+                "too small lower memory (0x%x > 0x%x)",
+                grub_linux_real_addr + GRUB_LINUX_SETUP_MOVE_SIZE,
+                (char *) grub_lower_mem);
       goto fail;
     }