* grub-core/loader/i386/multiboot_mbi.c (grub_multiboot_make_mbi): Limit

location to 640K.
This commit is contained in:
Vladimir Serbinenko 2014-02-28 09:48:57 +01:00
parent f94b2b4eeb
commit 4a70fed815
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2014-02-28 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/loader/i386/multiboot_mbi.c (grub_multiboot_make_mbi): Limit
location to 640K.
2014-02-28 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/kern/i386/coreboot/mmap.c: Filter out 0xa0000-0x100000

View file

@ -446,7 +446,7 @@ grub_multiboot_make_mbi (grub_uint32_t *target)
bufsize = grub_multiboot_get_mbi_size ();
err = grub_relocator_alloc_chunk_align (grub_multiboot_relocator, &ch,
0x10000, 0x100000 - bufsize,
0x10000, 0xa0000 - bufsize,
bufsize, 4,
GRUB_RELOCATOR_PREFERENCE_NONE, 0);
if (err)