You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
37 lines
1.3 KiB
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 |
|
From: Vladimir Serbinenko <phcoder@gmail.com> |
|
Date: Fri, 28 Feb 2014 09:48:57 +0100 |
|
Subject: [PATCH] * grub-core/loader/i386/multiboot_mbi.c |
|
(grub_multiboot_make_mbi): Limit location to 640K. |
|
|
|
--- |
|
grub-core/loader/i386/multiboot_mbi.c | 2 +- |
|
ChangeLog | 5 +++++ |
|
2 files changed, 6 insertions(+), 1 deletion(-) |
|
|
|
diff --git a/grub-core/loader/i386/multiboot_mbi.c b/grub-core/loader/i386/multiboot_mbi.c |
|
index 7431aa49bbe..f10c087f724 100644 |
|
--- a/grub-core/loader/i386/multiboot_mbi.c |
|
+++ b/grub-core/loader/i386/multiboot_mbi.c |
|
@@ -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) |
|
diff --git a/ChangeLog b/ChangeLog |
|
index 4f6f6d6d35a..bbaed2691c7 100644 |
|
--- a/ChangeLog |
|
+++ b/ChangeLog |
|
@@ -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
|
|
|