2006-06-05 Yoshinori K. Okuji <okuji@enbug.org>
* loader/i386/pc/linux.c (grub_rescue_cmd_initrd): The conditional of checking LINUX_MEM_SIZE was reverse. Reported by Jesus Velazquez <jesus.velazquez@gmail.com>.
This commit is contained in:
parent
deae281bfe
commit
051988bb87
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2006-06-05 Yoshinori K. Okuji <okuji@enbug.org>
|
||||||
|
|
||||||
|
* loader/i386/pc/linux.c (grub_rescue_cmd_initrd): The conditional
|
||||||
|
of checking LINUX_MEM_SIZE was reverse. Reported by Jesus
|
||||||
|
Velazquez <jesus.velazquez@gmail.com>.
|
||||||
|
|
||||||
2006-06-05 Yoshinori K. Okuji <okuji@enbug.org>
|
2006-06-05 Yoshinori K. Okuji <okuji@enbug.org>
|
||||||
|
|
||||||
Count partitions from 1 instead of 0 in the string representation
|
Count partitions from 1 instead of 0 in the string representation
|
||||||
|
|
|
@ -326,7 +326,7 @@ grub_rescue_cmd_initrd (int argc, char *argv[])
|
||||||
else
|
else
|
||||||
addr_max = GRUB_LINUX_INITRD_MAX_ADDRESS;
|
addr_max = GRUB_LINUX_INITRD_MAX_ADDRESS;
|
||||||
|
|
||||||
if (!linux_mem_size && linux_mem_size < addr_max)
|
if (linux_mem_size != 0 && linux_mem_size < addr_max)
|
||||||
addr_max = linux_mem_size;
|
addr_max = linux_mem_size;
|
||||||
|
|
||||||
/* Linux 2.3.xx has a bug in the memory range check, so avoid
|
/* Linux 2.3.xx has a bug in the memory range check, so avoid
|
||||||
|
|
Loading…
Reference in a new issue