* 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:
parent
ab80f326f4
commit
ca51c4a04f
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2011-08-23 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/commands/wildcard.c (make_regex): Handle @.
|
* grub-core/commands/wildcard.c (make_regex): Handle @.
|
||||||
|
|
|
@ -188,7 +188,7 @@ grub_machine_init (void)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
grub_arch_memsize = (totalmem >> 20);
|
grub_arch_memsize = totalmem;
|
||||||
grub_arch_highmemsize = 0;
|
grub_arch_highmemsize = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue