359c2df03d
For EFI systems, the BLS fragments were stored in the EFI System Partition (ESP) while in non-EFI systems it was stored in /boot. For consistency, it's better to always store the BLS fragments in the same path regardless of the firmware interface used. Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
32 lines
1001 B
Diff
32 lines
1001 B
Diff
From eab0520310030376f6295e0338e874bce10b0d5f Mon Sep 17 00:00:00 2001
|
|
From: Robert Elliott <elliott@hpe.com>
|
|
Date: Fri, 22 Jan 2016 13:32:30 +0100
|
|
Subject: [PATCH 140/249] efiemu: Handle persistent RAM and unknown possible
|
|
future additions.
|
|
|
|
(cherry picked from commit ae3b83a4d4df75a01198a2fed7542391e7c449e0)
|
|
|
|
Resolves: rhbz#1288608
|
|
---
|
|
grub-core/efiemu/mm.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/grub-core/efiemu/mm.c b/grub-core/efiemu/mm.c
|
|
index 52a032f7b2e..92e7df7e501 100644
|
|
--- a/grub-core/efiemu/mm.c
|
|
+++ b/grub-core/efiemu/mm.c
|
|
@@ -410,8 +410,8 @@ fill_hook (grub_uint64_t addr, grub_uint64_t size, grub_memory_type_t type,
|
|
return grub_efiemu_add_to_mmap (addr, size,
|
|
GRUB_EFI_ACPI_MEMORY_NVS);
|
|
|
|
- case GRUB_MEMORY_PERSISTENT:
|
|
- case GRUB_MEMORY_PERSISTENT_LEGACY:
|
|
+ case GRUB_MEMORY_PRAM:
|
|
+ case GRUB_MEMORY_PMEM:
|
|
return grub_efiemu_add_to_mmap (addr, size,
|
|
GRUB_EFI_PERSISTENT_MEMORY);
|
|
default:
|
|
--
|
|
2.17.1
|
|
|