This repository has been archived by the owner on Feb 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
grub-efi: take care of unload undershim
Under shim, we use a custom buffer to put the relocated image, make sure we free that memory when unloading. Signed-off-by: Ricardo Neri <[email protected]> Signed-off-by: Matt Fleming <[email protected]>
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
meta/recipes-bsp/grub/files/0007-efi-chainloader-take-care-of-unload-undershim.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
From 70a30826d1cfb7a90c34760896dfd92b9c396f52 Mon Sep 17 00:00:00 2001 | ||
From: Ricardo Neri <[email protected]> | ||
Date: Fri, 27 Mar 2015 08:31:27 -0700 | ||
Subject: [PATCH 7/7] efi: chainloader: take care of unload undershim | ||
|
||
Under shim, we use a custom buffer to put the relocated image, make | ||
sure we free that memory when unloading. | ||
|
||
Signed-off-by: Ricardo Neri <[email protected]> | ||
--- | ||
grub-core/loader/efi/chainloader.c | 14 ++++++++++++-- | ||
1 file changed, 12 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/grub-core/loader/efi/chainloader.c b/grub-core/loader/efi/chainloader.c | ||
index 1c9795c..d0ceb6e 100644 | ||
--- a/grub-core/loader/efi/chainloader.c | ||
+++ b/grub-core/loader/efi/chainloader.c | ||
@@ -586,8 +586,18 @@ grub_chainloader_unload (void) | ||
grub_efi_boot_services_t *b; | ||
|
||
b = grub_efi_system_table->boot_services; | ||
- efi_call_1 (b->unload_image, image_handle); | ||
- efi_call_2 (b->free_pages, address, pages); | ||
+ if (!shim_used) | ||
+ { | ||
+ efi_call_1 (b->unload_image, image_handle); | ||
+ efi_call_2 (b->free_pages, address, pages); | ||
+ } | ||
+ else | ||
+ { | ||
+ if (shim_buffer) | ||
+ { | ||
+ efi_call_2 (b->free_pages, shim_buffer, shim_pages); | ||
+ } | ||
+ } | ||
|
||
grub_free (file_path); | ||
grub_free (cmdline); | ||
-- | ||
1.9.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters