* grub-core/kern/mips/loongson/init.c (grub_machine_init): Handle the

case of less than 256 MiB of RAM.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2011-08-23 11:20:56 +02:00
parent ab80f326f4
commit ca51c4a04f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2011-08-23 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/kern/mips/loongson/init.c (grub_machine_init): Handle the
case of less than 256 MiB of RAM.
2011-08-23 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/commands/wildcard.c (make_regex): Handle @.

View file

@ -188,7 +188,7 @@ grub_machine_init (void)
}
else
{
grub_arch_memsize = (totalmem >> 20);
grub_arch_memsize = totalmem;
grub_arch_highmemsize = 0;
}