This is done for moving packages that are related to secure boot
out of LAT and into integ.
Use grub version: 2.06-1 .
Port grub-efi from LAT and make its build independent from grub2.
The patches for code and changes for debian build are ported from
layers ( meta-lat and meta-secure-core ) of yocto upstream.
Make grub-efi independent from grub2 because some code changes
for secure boot can make grub-pc's build fail.
This porting of grub-efi customizes grub images and grub.cfg for
efi boot. Install those files customized to grub-efi-amd64 package.
Test Plan:
The tests are done with all the changes for this porting,
which involves efitools/shim/grub2/grub-efi/lat-sdk.sh, because
they are in a chain for secure boot verification.
- PASS: secure boot OK on qemu.
- PASS: secure boot OK on PowerEdge R430 lab.
- PASS: secure boot NG on qemu/hardware when shim/grub-efi images
are without the right signatures.
Story: 2009221
Task: 46402
Signed-off-by: Li Zhou <li.zhou@windriver.com>
Change-Id: Ia3b482c1959b5e6462fe54f0b0e59a69db1b1ca7
44 lines
1.3 KiB
Diff
44 lines
1.3 KiB
Diff
From 416eaf86565248e11bfb4ef56b6d5a5e21a4541f Mon Sep 17 00:00:00 2001
|
|
From: Ricardo Neri <ricardo.neri-calderon@linux.intel.com>
|
|
Date: Fri, 27 Mar 2015 08:31:27 -0700
|
|
Subject: [PATCH] efi: chainloader: take care of unload undershim
|
|
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
|
|
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 <ricardo.neri-calderon@linux.intel.com>
|
|
---
|
|
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 adaf3c9..285271d 100644
|
|
--- a/grub-core/loader/efi/chainloader.c
|
|
+++ b/grub-core/loader/efi/chainloader.c
|
|
@@ -590,8 +590,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);
|
|
--
|
|
2.17.1
|
|
|