* grub-core/loader/i386/multiboot_mbi.c (grub_multiboot_make_mbi): Limit
location to 640K.
This commit is contained in:
parent
f94b2b4eeb
commit
4a70fed815
2 changed files with 6 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue