[U-Boot] [PATCH 1/1] efi_loader: always rebuild efi_crt0.o

Heinrich Schuchardt xypron.glpk at gmx.de
Mon Jul 22 06:05:44 UTC 2019


When changing the architecture without calling 'make clean' a subsequent
make fails with
lib/efi_loader/efi_crt0.o: file not recognized: File format not recognized

Force efi_crt0.o to be always rebuild.

Reported-by: Kever Yang <kever.yang at rock-chips.com>
Signed-off-by: Heinrich Schuchardt <xypron.glpk at gmx.de>
---
 scripts/Makefile.lib | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index de67677f61..2f5e28cac3 100644
--- a/scripts/Makefile.lib
+++ b/scripts/Makefile.lib
@@ -383,7 +383,7 @@ cmd_efi_ld = $(LD) -nostdlib -znocombreloc -T $(EFI_LDS_PATH) -shared \

 EFI_LDS_PATH = $(srctree)/arch/$(ARCH)/lib/$(EFI_LDS)

-$(obj)/efi_crt0.o: $(srctree)/arch/$(ARCH)/lib/$(EFI_CRT0:.o=.S)
+$(obj)/efi_crt0.o: $(srctree)/arch/$(ARCH)/lib/$(EFI_CRT0:.o=.S) FORCE
 	$(call if_changed_dep,as_o_S)

 $(obj)/efi_reloc.o: $(srctree)/arch/$(ARCH)/lib/$(EFI_RELOC:.o=.c) $(recordmcount_source) FORCE
--
2.20.1



More information about the U-Boot mailing list