build system: drop one level of indirection
coreboot.pre1 was generated then copied into coreboot.pre, now without any additional manipulation. Get rid of that extra step. Change-Id: I138567cadbc2fa1a6b6c988e34bdaae0e92d5554 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: https://review.coreboot.org/12550 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
1cab0125cc
commit
708226e906
11
Makefile.inc
11
Makefile.inc
|
@ -617,7 +617,7 @@ prebuild-files = \
|
||||||
$(cbfs-add-cmd) $(if $(call extract_nth,5,$(file)),-b $(call extract_nth,5,$(file))) &&))
|
$(cbfs-add-cmd) $(if $(call extract_nth,5,$(file)),-b $(call extract_nth,5,$(file))) &&))
|
||||||
prebuilt-files = $(foreach file,$(cbfs-files), $(call extract_nth,1,$(file)))
|
prebuilt-files = $(foreach file,$(cbfs-files), $(call extract_nth,1,$(file)))
|
||||||
|
|
||||||
$(obj)/coreboot.pre1: $(objcbfs)/bootblock.bin $$(prebuilt-files) $(FMAPTOOL) $(CBFSTOOL) $$(cpu_ucode_cbfs_file)
|
$(obj)/coreboot.pre: $(objcbfs)/bootblock.bin $$(prebuilt-files) $(FMAPTOOL) $(CBFSTOOL) $$(cpu_ucode_cbfs_file)
|
||||||
$(CBFSTOOL) $@.tmp create \
|
$(CBFSTOOL) $@.tmp create \
|
||||||
-B $(objcbfs)/bootblock.bin \
|
-B $(objcbfs)/bootblock.bin \
|
||||||
$(CBFSTOOL_PRE1_OPTS)
|
$(CBFSTOOL_PRE1_OPTS)
|
||||||
|
@ -632,8 +632,8 @@ prebuild-files = \
|
||||||
$(if $(call extract_nth,6,$(file)),$(cbfs-add-cmd) -a $(call extract_nth,6,$(file)) &&,\
|
$(if $(call extract_nth,6,$(file)),$(cbfs-add-cmd) -a $(call extract_nth,6,$(file)) &&,\
|
||||||
$(cbfs-add-cmd) $(if $(call extract_nth,5,$(file)),-b $(call extract_nth,5,$(file))) &&))
|
$(cbfs-add-cmd) $(if $(call extract_nth,5,$(file)),-b $(call extract_nth,5,$(file))) &&))
|
||||||
|
|
||||||
.PHONY: $(obj)/coreboot.pre1
|
.PHONY: $(obj)/coreboot.pre
|
||||||
$(obj)/coreboot.pre1: $$(prebuilt-files) $(CBFSTOOL)
|
$(obj)/coreboot.pre: $$(prebuilt-files) $(CBFSTOOL)
|
||||||
mv $(obj)/coreboot.rom $@.tmp
|
mv $(obj)/coreboot.rom $@.tmp
|
||||||
$(prebuild-files) true
|
$(prebuild-files) true
|
||||||
mv $@.tmp $@
|
mv $@.tmp $@
|
||||||
|
@ -744,11 +744,6 @@ cbfs-files-$(CONFIG_BOOTSPLASH_IMAGE) += bootsplash.jpg
|
||||||
bootsplash.jpg-file := $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE))
|
bootsplash.jpg-file := $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE))
|
||||||
bootsplash.jpg-type := bootsplash
|
bootsplash.jpg-type := bootsplash
|
||||||
|
|
||||||
$(obj)/coreboot.pre: $(objcbfs)/romstage.elf $(obj)/coreboot.pre1 $(CBFSTOOL)
|
|
||||||
@printf " CBFS $(subst $(obj)/,,$(@))\n"
|
|
||||||
cp $(obj)/coreboot.pre1 $@.tmp
|
|
||||||
mv $@.tmp $@
|
|
||||||
|
|
||||||
cbfs-files-$(CONFIG_BOARD_ID_MANUAL) += board_id
|
cbfs-files-$(CONFIG_BOARD_ID_MANUAL) += board_id
|
||||||
board_id-file := $(obj)/board_id
|
board_id-file := $(obj)/board_id
|
||||||
board_id-type := raw
|
board_id-type := raw
|
||||||
|
|
Loading…
Reference in New Issue