Blame SOURCES/0014-OvmfPkg-allow-exclusion-of-the-shell-from-the-firmwa.patch

6009e6
From 229c88dc3ded9baeaca8b87767dc5c41c05afd6e Mon Sep 17 00:00:00 2001
6009e6
From: Laszlo Ersek <lersek@redhat.com>
6009e6
Date: Tue, 4 Nov 2014 23:02:53 +0100
6009e6
Subject: OvmfPkg: allow exclusion of the shell from the firmware image (RH
6009e6
 only)
6009e6
6009e6
Notes about the RHEL-8.1/20190308-89910a39dcfd [edk2-stable201903] ->
6009e6
RHEL-8.2/20190904-37eef91017ad [edk2-stable201908] rebase:
6009e6
6009e6
- no change
6009e6
6009e6
Notes about the RHEL-8.0/20180508-ee3198e672e2 ->
6009e6
RHEL-8.1/20190308-89910a39dcfd rebase:
6009e6
6009e6
- update the patch against the following upstream commits:
6009e6
  - 4b888334d234 ("OvmfPkg: Remove EdkShellBinPkg in FDF", 2018-11-19)
6009e6
  - 277a3958d93a ("OvmfPkg: Don't include TftpDynamicCommand in XCODE5
6009e6
                  tool chain", 2018-11-27)
6009e6
6009e6
Notes about the RHEL-7.6/ovmf-20180508-2.gitee3198e672e2.el7 ->
6009e6
RHEL-8.0/20180508-ee3198e672e2 rebase:
6009e6
6009e6
- reorder the rebase changelog in the commit message so that it reads like
6009e6
  a blog: place more recent entries near the top
6009e6
- no changes to the patch body
6009e6
6009e6
Notes about the 20171011-92d07e48907f -> 20180508-ee3198e672e2 rebase:
6009e6
6009e6
- no change
6009e6
6009e6
Notes about the 20170228-c325e41585e3 -> 20171011-92d07e48907f rebase:
6009e6
6009e6
- no changes
6009e6
6009e6
Notes about the 20160608b-988715a -> 20170228-c325e41585e3 rebase:
6009e6
6009e6
- no changes
6009e6
6009e6
Message-id: <1415138578-27173-14-git-send-email-lersek@redhat.com>
6009e6
Patchwork-id: 62119
6009e6
O-Subject:  [RHEL-7.1 ovmf PATCH v2 13/18] OvmfPkg: allow exclusion of the shell
6009e6
	from the firmware image (RH only)
6009e6
Bugzilla: 1147592
6009e6
Acked-by: Andrew Jones <drjones@redhat.com>
6009e6
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
6009e6
Acked-by: Vitaly Kuznetsov <vkuznets@redhat.com>
6009e6
6009e6
When '-D EXCLUDE_SHELL_FROM_FD' is passed to 'build', exclude the shell
6009e6
binary from the firmware image.
6009e6
6009e6
Peter Jones advised us that firmware vendors for physical systems disable
6009e6
the memory-mapped, firmware image-contained UEFI shell in
6009e6
SecureBoot-enabled builds. The reason being that the memory-mapped shell
6009e6
can always load, it may have direct access to various hardware in the
6009e6
system, and it can run UEFI shell scripts (which cannot be signed at all).
6009e6
6009e6
Intended use of the new build option:
6009e6
6009e6
- In-tree builds: don't pass '-D EXCLUDE_SHELL_FROM_FD'. The resultant
6009e6
  firmware image will contain a shell binary, independently of SecureBoot
6009e6
  enablement, which is flexible for interactive development. (Ie. no
6009e6
  change for in-tree builds.)
6009e6
6009e6
- RPM builds: pass both '-D SECURE_BOOT_ENABLE' and
6009e6
  '-D EXCLUDE_SHELL_FROM_FD'. The resultant RPM will provide:
6009e6
6009e6
  - OVMF_CODE.fd: SecureBoot-enabled firmware, without builtin UEFI shell,
6009e6
6009e6
  - OVMF_VARS.fd: variable store template matching OVMF_CODE.fd,
6009e6
6009e6
  - UefiShell.iso: a bootable ISO image with the shell on it as default
6009e6
    boot loader. The shell binary will load when SecureBoot is turned off,
6009e6
    and won't load when SecureBoot is turned on (because it is not
6009e6
    signed).
6009e6
6009e6
    UefiShell.iso is the reason we're not excluding the shell from the DSC
6009e6
    files as well, only the FDF files -- when '-D EXCLUDE_SHELL_FROM_FD'
6009e6
    is specified, the shell binary needs to be built the same, only it
6009e6
    will be included in UefiShell.iso.
6009e6
6009e6
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
6009e6
(cherry picked from commit 9c391def70366cabae08e6008814299c3372fafd)
6009e6
(cherry picked from commit d9dd9ee42937b2611fe37183cc9ec7f62d946933)
6009e6
(cherry picked from commit 23df46ebbe7b09451d3a05034acd4d3a25e7177b)
6009e6
(cherry picked from commit f0303f71d576c51b01c4ff961b429d0e0e707245)
6009e6
(cherry picked from commit bbd64eb8658e9a33eab4227d9f4e51ad78d9f687)
6009e6
(cherry picked from commit 8628ef1b8d675ebec39d83834abbe3c8c8c42cf4)
6009e6
---
6009e6
 OvmfPkg/OvmfPkgIa32.fdf    | 2 ++
6009e6
 OvmfPkg/OvmfPkgIa32X64.fdf | 2 ++
6009e6
 OvmfPkg/OvmfPkgX64.fdf     | 2 ++
6009e6
 3 files changed, 6 insertions(+)
6009e6
6009e6
diff --git a/OvmfPkg/OvmfPkgIa32.fdf b/OvmfPkg/OvmfPkgIa32.fdf
6009e6
index 326f82384e..dff2fcd9f6 100644
6009e6
--- a/OvmfPkg/OvmfPkgIa32.fdf
6009e6
+++ b/OvmfPkg/OvmfPkgIa32.fdf
6009e6
@@ -278,10 +278,12 @@ INF  MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResour
6009e6
 INF  FatPkg/EnhancedFatDxe/Fat.inf
6009e6
 INF  MdeModulePkg/Universal/Disk/UdfDxe/UdfDxe.inf
6009e6
 
6009e6
+!ifndef $(EXCLUDE_SHELL_FROM_FD)
6009e6
 !if $(TOOL_CHAIN_TAG) != "XCODE5"
6009e6
 INF  ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf
6009e6
 !endif
6009e6
 INF  ShellPkg/Application/Shell/Shell.inf
6009e6
+!endif
6009e6
 
6009e6
 INF MdeModulePkg/Logo/LogoOpenSSLDxe.inf
6009e6
 
6009e6
diff --git a/OvmfPkg/OvmfPkgIa32X64.fdf b/OvmfPkg/OvmfPkgIa32X64.fdf
6009e6
index aefb6614ad..6684a2e799 100644
6009e6
--- a/OvmfPkg/OvmfPkgIa32X64.fdf
6009e6
+++ b/OvmfPkg/OvmfPkgIa32X64.fdf
6009e6
@@ -279,10 +279,12 @@ INF  MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResour
6009e6
 INF  FatPkg/EnhancedFatDxe/Fat.inf
6009e6
 INF  MdeModulePkg/Universal/Disk/UdfDxe/UdfDxe.inf
6009e6
 
6009e6
+!ifndef $(EXCLUDE_SHELL_FROM_FD)
6009e6
 !if $(TOOL_CHAIN_TAG) != "XCODE5"
6009e6
 INF  ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf
6009e6
 !endif
6009e6
 INF  ShellPkg/Application/Shell/Shell.inf
6009e6
+!endif
6009e6
 
6009e6
 INF MdeModulePkg/Logo/LogoOpenSSLDxe.inf
6009e6
 
6009e6
diff --git a/OvmfPkg/OvmfPkgX64.fdf b/OvmfPkg/OvmfPkgX64.fdf
6009e6
index aefb6614ad..6684a2e799 100644
6009e6
--- a/OvmfPkg/OvmfPkgX64.fdf
6009e6
+++ b/OvmfPkg/OvmfPkgX64.fdf
6009e6
@@ -279,10 +279,12 @@ INF  MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResour
6009e6
 INF  FatPkg/EnhancedFatDxe/Fat.inf
6009e6
 INF  MdeModulePkg/Universal/Disk/UdfDxe/UdfDxe.inf
6009e6
 
6009e6
+!ifndef $(EXCLUDE_SHELL_FROM_FD)
6009e6
 !if $(TOOL_CHAIN_TAG) != "XCODE5"
6009e6
 INF  ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf
6009e6
 !endif
6009e6
 INF  ShellPkg/Application/Shell/Shell.inf
6009e6
+!endif
6009e6
 
6009e6
 INF MdeModulePkg/Logo/LogoOpenSSLDxe.inf
6009e6
 
6009e6
-- 
6009e6
2.18.1
6009e6