summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2021-03-15 18:35:35 -0400
committerPeter Jones <pjones@redhat.com>2021-03-15 20:08:27 -0400
commit50c19e939eb8c38ddcc5c9350a434d37ad6a6951 (patch)
tree5650032a683ae4bd2189d5fa7f154fcc1b1cdd08
parentf5a3de3264f87f48186f80297fb1dbcddfd6d945 (diff)
downloadefi-boot-shim-upstream/shim-15.3-rc2.tar.gz
efi-boot-shim-upstream/shim-15.3-rc2.zip
arm and aarch64: fix some PE headers.upstream/shim-15.3-rc2shim-15.3-rc2
This fixes the SizeOfImage and SizeOfInitializedData headers on arm and aa64. Signed-off-by: Peter Jones <pjones@redhat.com>
-rw-r--r--elf_aarch64_efi.lds1
-rw-r--r--elf_arm_efi.lds1
m---------gnu-efi0
3 files changed, 2 insertions, 0 deletions
diff --git a/elf_aarch64_efi.lds b/elf_aarch64_efi.lds
index 8196cc37..70cc9588 100644
--- a/elf_aarch64_efi.lds
+++ b/elf_aarch64_efi.lds
@@ -77,6 +77,7 @@ SECTIONS
}
_esbat = .;
_sbat_size = . - _sbat;
+ _alldata_size = . - _data;
. = ALIGN(4096);
.dynsym : { *(.dynsym) }
diff --git a/elf_arm_efi.lds b/elf_arm_efi.lds
index 5f78933a..fa7512be 100644
--- a/elf_arm_efi.lds
+++ b/elf_arm_efi.lds
@@ -75,6 +75,7 @@ SECTIONS
}
_esbat = .;
_sbat_size = . - _sbat;
+ _alldata_size = . - _data;
. = ALIGN(4096);
.dynsym : { *(.dynsym) }
diff --git a/gnu-efi b/gnu-efi
-Subproject f922aec7d6d60c245a4d1e1f82598d427c7765b
+Subproject e32d8c84a5748a2e3b7220dae638418f81a7986