diff options
author | Jan Setje-Eilers <jan.setjeeilers@oracle.com> | 2021-02-19 15:40:42 -0800 |
---|---|---|
committer | Peter Jones <pjones@redhat.com> | 2021-02-20 17:50:42 -0500 |
commit | 888f5b544b7cce3cdae8074aa617b1d4add271a1 (patch) | |
tree | 5c1d38f83b57142875d39594b3c50833eb986389 /Makefile | |
parent | d74eb44aac7b394dc9c05f1bababe8f8c2a114e1 (diff) | |
download | efi-boot-shim-upstream/15+1613861442.888f5b5.tar.gz efi-boot-shim-upstream/15+1613861442.888f5b5.zip |
Add --set-section-alignment '.sbat=512' to objcopy command lineupstream/15+1613861442.888f5b5
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -95,7 +95,7 @@ VENDOR_SBATS := $(foreach x,$(wildcard data/sbat.*.csv),$(notdir $(x))) sbat_data.o : | $(SBATPATH) $(VENDOR_SBATS) sbat_data.o : /dev/null $(CC) $(CFLAGS) -x c -c -o $@ $< - $(OBJCOPY) --add-section .sbat=$(SBATPATH) $@ + $(OBJCOPY) --set-section-alignment '.sbat=512' --add-section .sbat=$(SBATPATH) $@ $(foreach vs,$(VENDOR_SBATS),$(call add-vendor-sbat,$(vs),$@)) $(SHIMNAME) : $(SHIMSONAME) |