diff options
author | Vincent Stehlé <vincent.stehle@arm.com> | 2021-11-24 15:54:20 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-11-29 11:15:37 -0500 |
commit | 270eeb6871a995abb89b51273dbf531efe7524ea (patch) | |
tree | a38bc2687a76782cf7db4b80b95146afa9ab3c24 | |
parent | 7d3bebb2066a807ee8c63b8e99d40663ae534089 (diff) | |
download | u-boot-270eeb6871a995abb89b51273dbf531efe7524ea.zip u-boot-270eeb6871a995abb89b51273dbf531efe7524ea.tar.gz u-boot-270eeb6871a995abb89b51273dbf531efe7524ea.tar.bz2 |
qemu: common: Fix build with update capsule
The common emulation Makefile has a dependency on a non-existent
qemu_capsule.o when building with support for capsule update enabled
(CONFIG_EFI_RUNTIME_UPDATE_CAPSULE=y).
The code which was in qemu_capsule.c has been completely moved to
lib/efi_loader/efi_capsule.c by commit 7a6fb28c8e4b ("efi_loader: capsule:
add back efi_get_public_key_data()").
Remove the false dependency.
This fixes the following build error:
make[1]: *** No rule to make target 'board/emulation/common/qemu_capsule.o', needed by 'board/emulation/common/built-in.o'. Stop.
Fixes: commit 47a25e81d35c ("Revert "efi_capsule: Move signature from DTB to .rodata"")
Signed-off-by: Vincent Stehlé <vincent.stehle@arm.com>
Cc: Simon Glass <sjg@chromium.org>
-rw-r--r-- | board/emulation/common/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/board/emulation/common/Makefile b/board/emulation/common/Makefile index 7ed447a..c5b452e 100644 --- a/board/emulation/common/Makefile +++ b/board/emulation/common/Makefile @@ -2,4 +2,3 @@ obj-$(CONFIG_SYS_MTDPARTS_RUNTIME) += qemu_mtdparts.o obj-$(CONFIG_SET_DFU_ALT_INFO) += qemu_dfu.o -obj-$(CONFIG_EFI_CAPSULE_FIRMWARE_MANAGEMENT) += qemu_capsule.o |