* loader/i386/pc/linux.c (grub_rescue_cmd_linux): Specify available
and required memory sizes in "too small lower memory" error.
+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.
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;
}