mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-28 07:44:52 +00:00
43 lines
1.4 KiB
Diff
43 lines
1.4 KiB
Diff
|
From 131dca6803c35679d8ff9bc60a96f3060f44fda9 Mon Sep 17 00:00:00 2001
|
||
|
From: Vladimir Serbinenko <phcoder@gmail.com>
|
||
|
Date: Fri, 28 Feb 2014 09:48:57 +0100
|
||
|
Subject: [PATCH 057/112] * grub-core/loader/i386/multiboot_mbi.c
|
||
|
(grub_multiboot_make_mbi): Limit location to 640K.
|
||
|
|
||
|
---
|
||
|
ChangeLog | 5 +++++
|
||
|
grub-core/loader/i386/multiboot_mbi.c | 2 +-
|
||
|
2 files changed, 6 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/ChangeLog b/ChangeLog
|
||
|
index 6aa347b..74485f3 100644
|
||
|
--- a/ChangeLog
|
||
|
+++ b/ChangeLog
|
||
|
@@ -1,5 +1,10 @@
|
||
|
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
|
||
|
region.
|
||
|
|
||
|
diff --git a/grub-core/loader/i386/multiboot_mbi.c b/grub-core/loader/i386/multiboot_mbi.c
|
||
|
index 7431aa4..f10c087 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)
|
||
|
--
|
||
|
1.8.5.3
|
||
|
|